diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-25 18:27:36 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-25 18:27:36 +1000 |
commit | df661be1a3623d0a655758095fb08cb953448336 (patch) | |
tree | d3961dee8417d9c7afd21dd54b690fad32a201f0 /source/core/StarDirectives.hpp | |
parent | ee092dd85d1f8d7594d4007be65e67b33e7cbf4e (diff) |
apparently GCC hates this
Diffstat (limited to 'source/core/StarDirectives.hpp')
-rw-r--r-- | source/core/StarDirectives.hpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source/core/StarDirectives.hpp b/source/core/StarDirectives.hpp index dafa2a0..822d619 100644 --- a/source/core/StarDirectives.hpp +++ b/source/core/StarDirectives.hpp @@ -32,8 +32,8 @@ public: void parse(String const& directives); String& buildString(String& out) const; String toString() const; - inline bool empty() const; - inline operator bool() const; + bool empty() const; + operator bool() const; friend DataStream& operator>>(DataStream& ds, Directives& directives); friend DataStream& operator<<(DataStream& ds, Directives const& directives); @@ -51,8 +51,8 @@ public: void parseDirectivesIntoLeaf(String const& directives); - inline bool empty() const; - inline operator bool() const; + bool empty() const; + operator bool() const; bool compare(DirectivesGroup const& other) const; void append(Directives const& other); void append(List<Directives::Entry>&& entries); @@ -60,7 +60,7 @@ public: DirectivesGroup& operator+=(Directives const& other); - inline String toString() const; + String toString() const; void addToString(String& string) const; typedef function<void(Directives::Entry const&)> DirectivesCallback; @@ -69,10 +69,10 @@ public: void forEach(DirectivesCallback callback) const; bool forEachAbortable(AbortableDirectivesCallback callback) const; - inline Image applyNewImage(const Image& image) const; + Image applyNewImage(const Image& image) const; void applyExistingImage(Image& image) const; - inline size_t hash() const; + size_t hash() const; const List<Directives>& list() const; friend bool operator==(DirectivesGroup const& a, DirectivesGroup const& b); |