diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-04-15 09:10:10 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-04-15 09:10:10 +0200 |
commit | a96a346e4ab58729b1f257268f2d2af1ebdca890 (patch) | |
tree | 73ad795433a1efd2f7a2a341e18f83f7d3c0c837 /web | |
parent | 17683bcc74284c344dc67f5a9b806801af5c598f (diff) |
Misc compilation fixes
Diffstat (limited to 'web')
-rw-r--r-- | web/apache/service | 2 |
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_; |