diff options
author | John Wiegley <johnw@newartisans.com> | 2012-03-11 05:08:55 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-03-11 05:08:55 -0500 |
commit | 62c04deb8719444d1f958d40fe6442b714bb7e50 (patch) | |
tree | 296c3e1742bbafc10d6cd9f67585a2ba68e5c3d2 /src/option.h | |
parent | 020de80f6012bb323f11da77e0ca3c8841999491 (diff) | |
download | fork-ledger-62c04deb8719444d1f958d40fe6442b714bb7e50.tar.gz fork-ledger-62c04deb8719444d1f958d40fe6442b714bb7e50.tar.bz2 fork-ledger-62c04deb8719444d1f958d40fe6442b714bb7e50.zip |
Quieted several compiler warnings from Clang
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/option.h b/src/option.h index f892b00e..36dba3a4 100644 --- a/src/option.h +++ b/src/option.h @@ -162,9 +162,8 @@ public: source = none; } - virtual void handler_thunk(const optional<string>& whence) {} - virtual void handler_thunk(const optional<string>& whence, - const string& str) {} + virtual void handler_thunk(const optional<string>&) {} + virtual void handler_thunk(const optional<string>&, const string&) {} value_t handler(call_scope_t& args) { if (wants_arg) { |