diff options
author | randomdan <randomdan@localhost> | 2012-05-22 22:19:53 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2012-05-22 22:19:53 +0000 |
commit | 67ec03101397663660f1e06e876aa45f40aec807 (patch) | |
tree | c20e8de0f5b3296ccf0aeabdf6aa6b3acecff88d /project2/cgi | |
parent | Move output encoding somewhere cacheable (diff) | |
download | project2-67ec03101397663660f1e06e876aa45f40aec807.tar.bz2 project2-67ec03101397663660f1e06e876aa45f40aec807.tar.xz project2-67ec03101397663660f1e06e876aa45f40aec807.zip |
Fixes picked up by GCC 4.6
Diffstat (limited to 'project2/cgi')
-rw-r--r-- | project2/cgi/cgiAppEngine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project2/cgi/cgiAppEngine.h b/project2/cgi/cgiAppEngine.h index 66d5a69..147ebe8 100644 --- a/project2/cgi/cgiAppEngine.h +++ b/project2/cgi/cgiAppEngine.h @@ -164,7 +164,7 @@ class CgiApplicationEngine : public ApplicationEngine, public TransformChainLink private: mutable NextStage currentStage; SessionPtr cursession; - mutable std::ostream & IO; + std::ostream & IO; mutable bool outputCachingActive; }; |