aboutsummaryrefslogtreecommitdiff
path: root/web/apache
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-04-15 09:10:10 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-04-15 09:10:10 +0200
commita96a346e4ab58729b1f257268f2d2af1ebdca890 (patch)
tree73ad795433a1efd2f7a2a341e18f83f7d3c0c837 /web/apache
parent17683bcc74284c344dc67f5a9b806801af5c598f (diff)
Misc compilation fixes
Diffstat (limited to 'web/apache')
-rw-r--r--web/apache/service2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/apache/service b/web/apache/service
index bfa8fa9..a44bdc0 100644
--- a/web/apache/service
+++ b/web/apache/service
@@ -33,7 +33,7 @@ namespace web
handle_impl (request& rq, response& rs, log& l, const module& exemplar)
{
M m (static_cast<const M&> (exemplar));
- m.handle (rq, rs, l);
+ static_cast<module&>(m).handle (rq, rs, l);
}
const module& exemplar_;