fix unreferencd local parameter warning
authorKevin Wasserman <krwasserman@hotmail.com>
Tue, 25 Nov 2014 17:08:15 +0000 (12:08 -0500)
committerKevin Wasserman <krwasserman@hotmail.com>
Tue, 25 Nov 2014 17:08:15 +0000 (12:08 -0500)
json_gssapi/src/GSSRequest.cpp

index 5d8b0b5..f38d78c 100644 (file)
@@ -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& 
+  catch ( bad_alloc& ) 
   {
     // Top-level response
     response.set("error_message", "Could not parse the input JSON.");