Skip to content

Commit 5ca90a9

Browse files
author
Christopher Sean Morrison
committed
use static_inline instead of 'static inline' so that we're consistent with other uses and expand correctly to the right symbols for this compilation
1 parent c06a398 commit 5ca90a9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/express/expr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ static Error ERROR_enum_no_such_item;
101101
static Error ERROR_group_ref_no_such_entity;
102102
static Error ERROR_group_ref_unexpected_type;
103103

104-
static inline
104+
static_inline
105105
int
106106
OPget_number_of_operands(Op_Code op)
107107
{

src/express/expscan.l

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ static int nesting_level = 0;
120120
#define MAX_NESTED_COMMENTS 20
121121
static struct Symbol_ open_comment[MAX_NESTED_COMMENTS];
122122

123-
static inline
123+
static_inline
124124
int
125125
SCANnextchar(char* buffer)
126126
{

0 commit comments

Comments
 (0)