diff options
author | mathias <mathias> | 2005-08-23 06:39:48 (GMT) |
---|---|---|
committer | mathias <mathias> | 2005-08-23 06:39:48 (GMT) |
commit | da8d245704832c6473eb8b9a7e4d59b16d96daad (patch) | |
tree | 85b0297b94e6b2f11d76264d9ca8a9f637e5b01b /src/RegExp.cc | |
parent | 8c3cfbef7d3054a90258d59bac3385f98f96a12b (diff) | |
download | fluxbox-da8d245704832c6473eb8b9a7e4d59b16d96daad.zip fluxbox-da8d245704832c6473eb8b9a7e4d59b16d96daad.tar.bz2 |
--disable-regexp switches from <regexp.h> to <string> in
Regexp.cc .. but it still needs to be compiled. hence the
little fix in src/Makefile.am
Diffstat (limited to 'src/RegExp.cc')
-rw-r--r-- | src/RegExp.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/RegExp.cc b/src/RegExp.cc index 96f3ce4..50748c5 100644 --- a/src/RegExp.cc +++ b/src/RegExp.cc | |||
@@ -99,6 +99,6 @@ bool RegExp::error() const { | |||
99 | #ifdef USE_REGEXP | 99 | #ifdef USE_REGEXP |
100 | return m_regex == 0; | 100 | return m_regex == 0; |
101 | #else | 101 | #else |
102 | return return m_str == ""; | 102 | return m_str == ""; |
103 | #endif // USE_REGEXP | 103 | #endif // USE_REGEXP |
104 | } | 104 | } |