From 16667a21c3052c89218d3e56098f0fc29dca2f1a Mon Sep 17 00:00:00 2001 From: Michael Krelin Date: Fri, 08 Feb 2008 22:16:15 +0000 Subject: minor fixes and making compiler a bit happier Signed-off-by: Michael Krelin --- (limited to 'lib/verify_op.cc') diff --git a/lib/verify_op.cc b/lib/verify_op.cc index ab21b4f..c493c12 100644 --- a/lib/verify_op.cc +++ b/lib/verify_op.cc @@ -15,8 +15,8 @@ namespace opkele { class RP_verifier : public iterator { public: - int seen; const string& return_to; + int seen; RP_verifier(const string& rt) : return_to(rt), seen(0) { } @@ -29,7 +29,7 @@ namespace opkele { } RP_verifier& operator++() { ++seen; return *this; } - RP_verifier& operator++(int) { +seen; return *this; } + RP_verifier& operator++(int) { ++seen; return *this; } }; void verify_OP::verify_return_to() { -- cgit v0.9.0.2