From: Kevin Wasserman Date: Tue, 25 Nov 2014 17:08:15 +0000 (-0500) Subject: fix unreferencd local parameter warning X-Git-Url: http://www.project-moonshot.org/gitweb/?p=gssweb.git;a=commitdiff_plain;h=505a502b488de91de6b0f42effda0cc948126b33 fix unreferencd local parameter warning --- diff --git a/json_gssapi/src/GSSRequest.cpp b/json_gssapi/src/GSSRequest.cpp index 5d8b0b5..f38d78c 100644 --- a/json_gssapi/src/GSSRequest.cpp +++ b/json_gssapi/src/GSSRequest.cpp @@ -61,7 +61,7 @@ void GSSRequest::parseJSON() response.set("method", request.get("method").string()); } /* bad_alloc is thrown when JSONObject can't parse the input string as JSON */ - catch ( bad_alloc& e ) + catch ( bad_alloc& ) { // Top-level response response.set("error_message", "Could not parse the input JSON.");