summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2011-03-02 11:07:17 +0000
committerrandomdan <randomdan@localhost>2011-03-02 11:07:17 +0000
commite4c0b208d167e27c1ecbecbb604bcc9cd8d2784b (patch)
tree24c43b45c7c7a2cc6742be7f31106d5616b9d6d8
parentJust build the needed bits of libmisc into places they're needed, don't build... (diff)
downloadproject2-e4c0b208d167e27c1ecbecbb604bcc9cd8d2784b.tar.bz2
project2-e4c0b208d167e27c1ecbecbb604bcc9cd8d2784b.tar.xz
project2-e4c0b208d167e27c1ecbecbb604bcc9cd8d2784b.zip
Fix function definitions to match declarations (fixes Doxygen warnings)
-rw-r--r--project2/cgi/cgiAppEngine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/project2/cgi/cgiAppEngine.cpp b/project2/cgi/cgiAppEngine.cpp
index 9f7665d..d8c667a 100644
--- a/project2/cgi/cgiAppEngine.cpp
+++ b/project2/cgi/cgiAppEngine.cpp
@@ -260,7 +260,7 @@ CgiApplicationEngine::session() const
}
bool
-CgiApplicationEngine::checkDomain(const CgiApplicationEngine::DomainPlatforms::value_type & i) const
+CgiApplicationEngine::checkDomain(const DomainPlatforms::value_type & i) const
{
const std::string & h = _env->getServerName();
return boost::regex_match(h.begin(), h.end(), boost::regex(i.first.raw()));