diff options
author | Mathias Gumz <akira at fluxbox dot org> | 2007-12-29 21:38:53 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2007-12-29 21:38:53 (GMT) |
commit | e1f362ae764884a4cd1e1673292cb37d5a85f89c (patch) | |
tree | 137430b26aee6f3638f27281d3757c2c75ef4b20 /src/ClientPattern.hh | |
parent | e90c3678d9e54bc9251619fdee2d7341f042167b (diff) | |
download | fluxbox_pavel-e1f362ae764884a4cd1e1673292cb37d5a85f89c.zip fluxbox_pavel-e1f362ae764884a4cd1e1673292cb37d5a85f89c.tar.bz2 |
'inline' in class declaration is implicitly inline
Diffstat (limited to 'src/ClientPattern.hh')
-rw-r--r-- | src/ClientPattern.hh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ClientPattern.hh b/src/ClientPattern.hh index 4531c4a..dd24add 100644 --- a/src/ClientPattern.hh +++ b/src/ClientPattern.hh | |||
@@ -42,7 +42,7 @@ class ClientPattern:private FbTk::NotCopyable { | |||
42 | public: | 42 | public: |
43 | ClientPattern(); | 43 | ClientPattern(); |
44 | /** | 44 | /** |
45 | * Create the pattern from the given string as it would appear in the | 45 | * Create the pattern from the given string as it would appear in the |
46 | * apps file. the bool value returns the character at which | 46 | * apps file. the bool value returns the character at which |
47 | * there was a parse problem, or -1. | 47 | * there was a parse problem, or -1. |
48 | */ | 48 | */ |
@@ -76,7 +76,7 @@ public: | |||
76 | */ | 76 | */ |
77 | bool addTerm(const std::string &str, WinProperty prop, bool negate = false); | 77 | bool addTerm(const std::string &str, WinProperty prop, bool negate = false); |
78 | 78 | ||
79 | inline void addMatch() { ++m_nummatches; } | 79 | void addMatch() { ++m_nummatches; } |
80 | 80 | ||
81 | // whether this pattern has identical matching criteria | 81 | // whether this pattern has identical matching criteria |
82 | bool operator ==(const ClientPattern &pat) const; | 82 | bool operator ==(const ClientPattern &pat) const; |
@@ -85,7 +85,7 @@ public: | |||
85 | * If there are no terms, then there is assumed to be an error | 85 | * If there are no terms, then there is assumed to be an error |
86 | * the column of the error is stored in m_matchlimit | 86 | * the column of the error is stored in m_matchlimit |
87 | */ | 87 | */ |
88 | inline int error() const { return m_terms.empty() ? 1 : 0; } | 88 | int error() const { return m_terms.empty() ? 1 : 0; } |
89 | 89 | ||
90 | static std::string getProperty(WinProperty prop, const Focusable &client); | 90 | static std::string getProperty(WinProperty prop, const Focusable &client); |
91 | 91 | ||
@@ -95,7 +95,7 @@ private: | |||
95 | * We have a "term" in the whole expression which is the full pattern | 95 | * We have a "term" in the whole expression which is the full pattern |
96 | * we also need to keep track of the uncompiled regular expression | 96 | * we also need to keep track of the uncompiled regular expression |
97 | * for final output | 97 | * for final output |
98 | */ | 98 | */ |
99 | struct Term { | 99 | struct Term { |
100 | Term(const std::string ®str, bool full_match) :regexp(regstr, full_match){}; | 100 | Term(const std::string ®str, bool full_match) :regexp(regstr, full_match){}; |
101 | std::string orig; | 101 | std::string orig; |