We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8911320 commit f881aabCopy full SHA for f881aab
2 files changed
ext/libxml/ruby_xml_error.c
@@ -158,7 +158,7 @@ static VALUE rxml_error_reset_handler(VALUE self)
158
return self;
159
}
160
161
-NORETURN(void rxml_raise(const xmlError *xerror))
+void rxml_raise(const xmlError *xerror)
162
{
163
if (xerror)
164
ext/libxml/ruby_xml_error.h
@@ -9,6 +9,6 @@ extern VALUE eXMLError;
9
10
void rxml_init_error(void);
11
VALUE rxml_error_wrap(const xmlError *xerror);
12
-NORETURN(void rxml_raise(const xmlError *xerror));
+void rxml_raise(const xmlError *xerror);
13
14
#endif
0 commit comments