From ee092dd85d1f8d7594d4007be65e67b33e7cbf4e Mon Sep 17 00:00:00 2001 From: Kae <80987908+Novaenia@users.noreply.github.com> Date: Sun, 25 Jun 2023 18:24:54 +1000 Subject: [PATCH] fix inline mismatch --- source/core/StarDirectives.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;