Skip to content

Commit

Permalink
Merge pull request #5145 from 9rnsr/fix_cpp_headers
Browse files Browse the repository at this point in the history
udpate lexer.h and identifier.h
  • Loading branch information
9rnsr committed Sep 30, 2015
2 parents eb1c764 + b8cc38b commit a989653
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions src/identifier.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ class Identifier : public RootObject
static Identifier *generateId(const char *prefix, size_t i);
static Identifier *idPool(const char *s);
static Identifier *idPool(const char *s, size_t len);
static bool isValidIdentifier(const char *p);
static Identifier *lookup(const char *s, size_t len);
static void initTable();
};
Expand Down
1 change: 0 additions & 1 deletion src/lexer.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ class Lexer
unsigned decodeUTF();
void getDocComment(Token *t, unsigned lineComment);

static bool isValidIdentifier(const char *p);
static const utf8_t *combineComments(const utf8_t *c1, const utf8_t *c2);

private:
Expand Down

0 comments on commit a989653

Please sign in to comment.