diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-06-01 00:50:23 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-06-01 00:50:23 +0000 |
commit | 84a1af52066a5bf2df5ffde1641421894be3bbf9 (patch) | |
tree | e2e34ef554803eeac825dbd89724193af18c6f07 | |
parent | dccbf28dda7ca57172cb84b3fbaedaeab2e66041 (diff) | |
download | bcm5719-llvm-84a1af52066a5bf2df5ffde1641421894be3bbf9.tar.gz bcm5719-llvm-84a1af52066a5bf2df5ffde1641421894be3bbf9.zip |
Unify coding style.
llvm-svn: 72682
-rw-r--r-- | clang/lib/Frontend/PCHWriterDecl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Frontend/PCHWriterDecl.cpp b/clang/lib/Frontend/PCHWriterDecl.cpp index c3d968ef261..67346619978 100644 --- a/clang/lib/Frontend/PCHWriterDecl.cpp +++ b/clang/lib/Frontend/PCHWriterDecl.cpp @@ -485,7 +485,7 @@ void PCHWriter::WriteDeclsBlock(ASTContext &Context) { } // Determine the ID for this declaration - pch::DeclID& ID = DeclIDs[D]; + pch::DeclID &ID = DeclIDs[D]; if (ID == 0) ID = DeclIDs.size(); |