Commit 7e0ed77c by alokp@chromium.org

Added a space between ']]'. Flex 2.5.33, which is used on MAC does not like this.

Review URL: http://codereview.appspot.com/1119044 git-svn-id: https://angleproject.googlecode.com/svn/trunk@274 736b8ea6-26fd-11df-bfd4-992fa37f6226
parent 91a01a16
...@@ -506,7 +506,7 @@ void HandlePragma(const char **tokens, int numTokens) ...@@ -506,7 +506,7 @@ void HandlePragma(const char **tokens, int numTokens)
if (iter != pragmaTable.end()) { if (iter != pragmaTable.end()) {
iter->second = tokens[2]; iter->second = tokens[2];
} else { } else {
pragmaTable[tokens[0]] = tokens[2]; pragmaTable[ tokens[0] ] = tokens[2];
} }
} else if (numTokens >= 2) { } else if (numTokens >= 2) {
TPragmaTable& pragmaTable = ((TParseContext *)cpp->pC)->contextPragma.pragmaTable; TPragmaTable& pragmaTable = ((TParseContext *)cpp->pC)->contextPragma.pragmaTable;
...@@ -515,7 +515,7 @@ void HandlePragma(const char **tokens, int numTokens) ...@@ -515,7 +515,7 @@ void HandlePragma(const char **tokens, int numTokens)
if (iter != pragmaTable.end()) { if (iter != pragmaTable.end()) {
iter->second = tokens[1]; iter->second = tokens[1];
} else { } else {
pragmaTable[tokens[0]] = tokens[1]; pragmaTable[ tokens[0] ] = tokens[1];
} }
} }
#endif // PRAGMA_TABLE #endif // PRAGMA_TABLE
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment