From 2fa6ad34a3404918184cb96b827ebd66a28dbb44 Mon Sep 17 00:00:00 2001 From: Per Hedbor <ph@opera.com> Date: Thu, 8 May 2014 14:28:39 +0200 Subject: [PATCH] Save a few Kb code size --- src/preprocessor.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/preprocessor.h b/src/preprocessor.h index e6455ad576..99e15ddc37 100644 --- a/src/preprocessor.h +++ b/src/preprocessor.h @@ -366,11 +366,11 @@ static void PUSH_STRING(WCHAR *str, string_builder_putchar(buf, '"'); } -static INLINE ptrdiff_t find_end_brace(struct cpp *this, +static ptrdiff_t find_end_brace(struct cpp *this, WCHAR *data, ptrdiff_t len, ptrdiff_t pos); -static INLINE ptrdiff_t find_end_parenthesis(struct cpp *this, +static ptrdiff_t find_end_parenthesis(struct cpp *this, WCHAR *data, ptrdiff_t len, ptrdiff_t pos) @@ -408,7 +408,7 @@ static INLINE ptrdiff_t find_end_parenthesis(struct cpp *this, } } -static INLINE ptrdiff_t find_end_brace(struct cpp *this, +static ptrdiff_t find_end_brace(struct cpp *this, WCHAR *data, ptrdiff_t len, ptrdiff_t pos) -- GitLab