From b973a688d33c414f03465decb11e232d869030d9 Mon Sep 17 00:00:00 2001 From: mattijs Date: Sun, 28 Sep 2008 19:26:15 +0100 Subject: [PATCH] added constness --- src/OSspecific/Unix/regularExpression.H | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OSspecific/Unix/regularExpression.H b/src/OSspecific/Unix/regularExpression.H index dc574a4c9f..9924caef28 100644 --- a/src/OSspecific/Unix/regularExpression.H +++ b/src/OSspecific/Unix/regularExpression.H @@ -100,7 +100,7 @@ public: // Member functions //- Matches? - inline bool matches(const string& s) + inline bool matches(const string& s) const { size_t nmatch = 0; regmatch_t *pmatch = NULL;