Fix a GCC warning, patch by Justin Handville

llvm-svn: 42007
This commit is contained in:
Chris Lattner 2007-09-16 19:12:45 +00:00
parent 8ad0e6a484
commit b38b0ad095
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ private:
Kind DeclKind : 8;
/// InvalidDecl - This indicates a semantic error occurred.
int InvalidDecl : 1;
unsigned int InvalidDecl : 1;
protected:
Decl(Kind DK) : DeclKind(DK), InvalidDecl(0) {