mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Reformat all the things!
This commit is contained in:
@ -24,6 +24,7 @@ public:
|
||||
const T* operator->() const { return &std::get<T>(m_variant); }
|
||||
T& operator*() { return std::get<T>(m_variant); }
|
||||
T* operator->() { return &std::get<T>(m_variant); }
|
||||
|
||||
private:
|
||||
std::variant<ResultCode, T> m_variant;
|
||||
};
|
||||
|
Reference in New Issue
Block a user