diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-25 18:24:54 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-25 18:24:54 +1000 |
commit | ee092dd85d1f8d7594d4007be65e67b33e7cbf4e (patch) | |
tree | 22c353ec4f16af5094651a51ac6c04bf1e171212 /source/core/StarDirectives.cpp | |
parent | 7d205330dbf1c2fd44d9d58393ab46434ac8bb5e (diff) |
fix inline mismatch
Diffstat (limited to 'source/core/StarDirectives.cpp')
-rw-r--r-- | source/core/StarDirectives.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/StarDirectives.cpp b/source/core/StarDirectives.cpp index 5dd82cf..c7c35fc 100644 --- a/source/core/StarDirectives.cpp +++ b/source/core/StarDirectives.cpp @@ -141,7 +141,7 @@ inline DirectivesGroup::operator bool() const { return empty(); } -inline bool DirectivesGroup::compare(DirectivesGroup const& other) const { +bool DirectivesGroup::compare(DirectivesGroup const& other) const { if (m_count != other.m_count) return false; |