Skip to content

Commit fbc3f38

Browse files
lioncashfincs
authored andcommitted
picasso_assembler: Silence a -Wmissing-prototypes warning
This is only used in this translation unit.
1 parent e74836b commit fbc3f38

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/picasso_assembler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1755,7 +1755,7 @@ DEF_DIRECTIVE(setfi)
17551755
return 0;
17561756
}
17571757

1758-
int parseBool(bool& out, const char* text)
1758+
static int parseBool(bool& out, const char* text)
17591759
{
17601760
if (stricmp(text, "true")==0 || stricmp(text, "on")==0 || stricmp(text, "1")==0)
17611761
{

0 commit comments

Comments
 (0)