Author: akhaldi
Date: Sun Jun 23 12:42:00 2013
New Revision: 59311
URL:
http://svn.reactos.org/svn/reactos?rev=59311&view=rev
Log:
[WIDL]
* Don't mix static and extern (FORCEINLINE).
Modified:
trunk/reactos/tools/widl/header.c
Modified: trunk/reactos/tools/widl/header.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/tools/widl/header.c?rev=59…
==============================================================================
--- trunk/reactos/tools/widl/header.c [iso-8859-1] (original)
+++ trunk/reactos/tools/widl/header.c [iso-8859-1] Sun Jun 23 12:42:00 2013
@@ -952,7 +952,7 @@
if (!is_callas(func->attrs) && !is_inherited_method(iface, func)) {
const var_t *arg;
- fprintf(header, "static FORCEINLINE ");
+ fprintf(header, "FORCEINLINE ");
write_type_decl_left(header, type_function_get_rettype(func->type));
fprintf(header, " %s_%s(", name, get_name(func));
write_args(header, type_get_function_args(func->type), name, 1, FALSE);