From d604e81604957a5814017e977643f3d0d484786d Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Fri, 15 Jul 2016 12:50:39 +0200 Subject: [PATCH] Unreferenced parameters warning resolved --- src/valhex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/valhex.cpp b/src/valhex.cpp index 8add4f1..5bf25b1 100644 --- a/src/valhex.cpp +++ b/src/valhex.cpp @@ -38,7 +38,7 @@ wxHexValidatorBase::wxHexValidatorBase(const wxHexValidatorBase& other) : } -bool wxHexValidatorBase::IsMinusOk(const wxString& val, int pos) const +bool wxHexValidatorBase::IsMinusOk(const wxString& /*val*/, int /*pos*/) const { // Minus is never OK with hexadecimal numbers. return false;