summaryrefslogtreecommitdiff
path: root/include/modules
diff options
context:
space:
mode:
authorattilamolnar <attilamolnar@hush.com>2013-08-27 15:03:10 +0200
committerattilamolnar <attilamolnar@hush.com>2013-08-27 15:03:10 +0200
commit5384ddf545575bc27904b3534fb9d2340de7a1d7 (patch)
treebbf13f551069b3bdb2a26fa4b3eec980cc3bfc05 /include/modules
parent6b16dbc84c748292535d1309cadf696f7828a8a4 (diff)
Fix Windows build and a few more problems
Diffstat (limited to 'include/modules')
-rw-r--r--include/modules/regex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/modules/regex.h b/include/modules/regex.h
index 0bced4e2b..5ef00cdd0 100644
--- a/include/modules/regex.h
+++ b/include/modules/regex.h
@@ -46,7 +46,7 @@ public:
class RegexFactory : public DataProvider
{
public:
- RegexFactory(Module* creator, const std::string& name) : DataProvider(creator, name) { }
+ RegexFactory(Module* Creator, const std::string& Name) : DataProvider(Creator, Name) { }
virtual Regex* Create(const std::string& expr) = 0;
};