Skip to content

Commit

Permalink
Try to fix windows build
Browse files Browse the repository at this point in the history
noreturn attribute has to be on the declaration as well.
  • Loading branch information
nikic committed Apr 12, 2019
1 parent 3c23084 commit a345908
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/soap/soap.c
Expand Up @@ -51,7 +51,7 @@ static void type_to_string(sdlTypePtr type, smart_str *buf, int level);
static void clear_soap_fault(zval *obj);
static void set_soap_fault(zval *obj, char *fault_code_ns, char *fault_code, char *fault_string, char *fault_actor, zval *fault_detail, char *name);
static void add_soap_fault_ex(zval *fault, zval *obj, char *fault_code, char *fault_string, char *fault_actor, zval *fault_detail);
static void soap_server_fault(char* code, char* string, char *actor, zval* details, char *name);
static ZEND_NORETURN void soap_server_fault(char* code, char* string, char *actor, zval* details, char *name);
static void soap_server_fault_ex(sdlFunctionPtr function, zval* fault, soapHeader* hdr);

static sdlParamPtr get_param(sdlFunctionPtr function, char *param_name, int index, int);
Expand Down

0 comments on commit a345908

Please sign in to comment.