From c9e98171fd2d9aaebd31888eb33429d098086052 Mon Sep 17 00:00:00 2001 From: Ruben Ayrapetyan Date: Mon, 14 Jul 2014 19:53:41 +0400 Subject: [PATCH] Remove inline attributes from src/libjsparser/lexer.c. --- src/libjsparser/lexer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libjsparser/lexer.c b/src/libjsparser/lexer.c index bbff2d4be..042518452 100644 --- a/src/libjsparser/lexer.c +++ b/src/libjsparser/lexer.c @@ -83,7 +83,7 @@ static string_and_token keyword_tokens[] = static string_and_token seen_names[MAX_NAMES]; static size_t seen_names_num; -static inline bool +static bool is_empty (token tok) { return tok.type == TOK_EMPTY; @@ -213,7 +213,7 @@ add_to_seen_tokens (string_and_token snt) seen_names[seen_names_num++] = snt; } -static inline void +static void new_token (void) { JERRY_ASSERT (buffer); @@ -227,7 +227,7 @@ consume_char (void) buffer++; } -static inline const char * +static const char * current_token (void) { JERRY_ASSERT (buffer);