thermosphere: singleton ctors should be private

This commit is contained in:
TuxSH
2020-02-21 00:20:50 +00:00
parent f6793139c1
commit 77fbbb4c68
5 changed files with 15 additions and 11 deletions

View File

@@ -366,6 +366,9 @@ namespace ams::hvisor {
void PushListRegisters(VirqState *chosen[], size_t num);
bool UpdateListRegister(volatile GicV2VirtualInterfaceController::ListRegister *lr);
private:
constexpr VirtualGic() = default;
public:
static bool ValidateGicdRegisterAccess(size_t offset, size_t sz);
public: