Logging: Refactor and optimizations

This commit is contained in:
Exzap 2023-09-11 11:59:30 +02:00
parent fda5ec2697
commit b902aa2048
15 changed files with 263 additions and 266 deletions

View file

@ -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; }