Remove unnecessary block from PHP version of SWIG_exception macro

This commit is contained in:
Olly Betts 2014-04-03 11:23:57 +13:00
commit b0e809d94b

View file

@ -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