summaryrefslogtreecommitdiffabout
path: root/lib/extension.cc
authorMichael Krelin <hacker@klever.net>2007-11-21 17:05:50 (UTC)
committer Michael Krelin <hacker@klever.net>2007-11-21 17:05:50 (UTC)
commitd9772d76607ad5b293e385df26cce4c87b8f6e54 (patch) (side-by-side diff)
tree2839b510d90652a429af68c37970bed1d63970fd /lib/extension.cc
parent55008364921771a74a1192411583a72cc05adfa6 (diff)
downloadlibopkele-d9772d76607ad5b293e385df26cce4c87b8f6e54.zip
libopkele-d9772d76607ad5b293e385df26cce4c87b8f6e54.tar.gz
libopkele-d9772d76607ad5b293e385df26cce4c87b8f6e54.tar.bz2
further calming compiler down
Signed-off-by: Michael Krelin <hacker@klever.net>
Diffstat (limited to 'lib/extension.cc') (more/less context) (ignore whitespace changes)
-rw-r--r--lib/extension.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/extension.cc b/lib/extension.cc
index 44cf0cb..8f22562 100644
--- a/lib/extension.cc
+++ b/lib/extension.cc
@@ -3,13 +3,13 @@
namespace opkele {
- void extension_t::checkid_hook(params_t& p,const string& identity) {
+ void extension_t::checkid_hook(params_t& /* p */,const string& /* identity */ ) {
throw not_implemented(OPKELE_CP_ "Consumer checkid_hook not implemented");
}
- void extension_t::id_res_hook(const params_t& p,const params_t& sp,const string& identity) {
+ void extension_t::id_res_hook(const params_t& /* p */,const params_t& /* sp */,const string& /* identity */) {
throw not_implemented(OPKELE_CP_ "Consumer id_res_hook not implemented");
}
- void extension_t::checkid_hook(const params_t& pin,params_t& pout) {
+ void extension_t::checkid_hook(const params_t& /* pin */,params_t& /* pout */) {
throw not_implemented(OPKELE_CP_ "Server checkid_hook not implemented");
}
}