Remove dead code; Fix issue regarding order of evaluation of function parameters (in C++) depending on the compiler (clang vs gcc vs msvc)

This commit is contained in:
gingerBill
2018-02-04 20:07:05 +00:00
parent 8a76a370a9
commit ed2f49e8d2
5 changed files with 46 additions and 121 deletions

View File

@@ -169,8 +169,8 @@ bool operator>=(TokenPos const &a, TokenPos const &b) { return token_pos_cmp(a,
struct Token {
TokenKind kind;
String string;
TokenPos pos;
String string;
TokenPos pos;
};
Token empty_token = {Token_Invalid};