mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-04 05:51:19 +12:00
Logging: Refactor and optimizations
This commit is contained in:
parent
fda5ec2697
commit
b902aa2048
15 changed files with 263 additions and 266 deletions
|
@ -39,7 +39,7 @@ public:
|
|||
return *this;
|
||||
}
|
||||
|
||||
[[nodiscard]] TType GetValue() const { return m_value.load(); }
|
||||
[[nodiscard]] inline TType GetValue() const { return m_value.load(); }
|
||||
void SetValue(const TType& v) { m_value = v; }
|
||||
|
||||
[[nodiscard]] const TType& GetInitValue() const { return m_init_value; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue