From b0e809d94bf82718b5ba37295b5aa34e90259f7a Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Thu, 3 Apr 2014 11:23:57 +1300 Subject: [PATCH] Remove unnecessary block from PHP version of SWIG_exception macro --- Lib/exception.i | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/exception.i b/Lib/exception.i index 050042dab..437eee6f0 100644 --- a/Lib/exception.i +++ b/Lib/exception.i @@ -15,7 +15,7 @@ #ifdef SWIGPHP %{ #include "zend_exceptions.h" -#define SWIG_exception(code, msg) { zend_throw_exception(NULL, (char*)msg, code TSRMLS_CC); } +#define SWIG_exception(code, msg) zend_throw_exception(NULL, (char*)msg, code TSRMLS_CC) %} #endif