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
commit40406866f165958791fc2093bd0d25a60c5af5eb (patch)
tree24c43b45c7c7a2cc6742be7f31106d5616b9d6d8
parentJust build the needed bits of libmisc into places they're needed, don't build... (diff)
downloadproject2-40406866f165958791fc2093bd0d25a60c5af5eb.tar.bz2
project2-40406866f165958791fc2093bd0d25a60c5af5eb.tar.xz
project2-40406866f165958791fc2093bd0d25a60c5af5eb.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()));