From 505a502b488de91de6b0f42effda0cc948126b33 Mon Sep 17 00:00:00 2001 From: Kevin Wasserman Date: Tue, 25 Nov 2014 12:08:15 -0500 Subject: [PATCH] fix unreferencd local parameter warning --- json_gssapi/src/GSSRequest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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."); -- 2.1.4