Commit 73ef3155 authored by Peter Berg Larsen's avatar Peter Berg Larsen Committed by Alexandre Julliard

Added the word "FLOAT" to be recognized as argument type float.

parent 06f9b8b9
......@@ -259,7 +259,7 @@ int symbol_get_type (const char *string)
if (strstr (string, "double"))
return ARG_DOUBLE;
if (strstr (string, "float"))
if (strstr (string, "float") || strstr (string, "FLOAT"))
return ARG_FLOAT;
if (strstr (string, "void") || strstr (string, "VOID"))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment