diff options
author | Chris Lattner <sabre@nondot.org> | 2010-06-15 21:06:38 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-06-15 21:06:38 +0000 |
commit | c54539cd173e20d8b179b9488fabfc5eb4cf5ee6 (patch) | |
tree | 87b5d9fa806950af3c046472ea8e13321025af26 /include/clang | |
parent | 410a1da2c87486f529856857aa3388cf67c7bdb9 (diff) |
fix the various buildbot failures by ensuring that tokens are really completely initialized.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@106043 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang')
-rw-r--r-- | include/clang/Lex/Token.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/clang/Lex/Token.h b/include/clang/Lex/Token.h index 4a7636b7d2..ef5326909b 100644 --- a/include/clang/Lex/Token.h +++ b/include/clang/Lex/Token.h @@ -148,6 +148,7 @@ public: Kind = tok::unknown; Flags = 0; PtrData = 0; + UintData = 0; Loc = SourceLocation(); } |