summaryrefslogtreecommitdiffstats
path: root/src/Common/RequestManager.h
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-08-03 18:39:29 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-08-03 18:39:29 +0200
commitd74e5245a29c700cc788f94bcadf4ab62bb606cc (patch)
tree1d72120f09a7db326d1e4045ef515df3bda895bb /src/Common/RequestManager.h
parentfdd7fbae926821be7d5229d5cba04396e6f00f99 (diff)
downloadmad-d74e5245a29c700cc788f94bcadf4ab62bb606cc.tar
mad-d74e5245a29c700cc788f94bcadf4ab62bb606cc.zip
_UNUSED_PARAMETER_ entfernt
Namen unbenutzte Parameter auskommentieren
Diffstat (limited to 'src/Common/RequestManager.h')
-rw-r--r--src/Common/RequestManager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Common/RequestManager.h b/src/Common/RequestManager.h
index cbd1aa1..0c50881 100644
--- a/src/Common/RequestManager.h
+++ b/src/Common/RequestManager.h
@@ -81,7 +81,7 @@ class RequestManager : private boost::noncopyable {
return types;
}
- virtual boost::shared_ptr<RequestHandler> createRequestHandler(Application *application, const std::string &type _UNUSED_PARAMETER_) {
+ virtual boost::shared_ptr<RequestHandler> createRequestHandler(Application *application, const std::string& /*type*/) {
return boost::shared_ptr<RequestHandler>(new T(application));
}
};