[cfe-commits] r96518 - /cfe/trunk/include/clang/Checker/PathSensitive/GRState.h
Ted Kremenek
kremenek at apple.com
Wed Feb 17 13:27:49 PST 2010
Author: kremenek
Date: Wed Feb 17 15:27:48 2010
New Revision: 96518
URL: http://llvm.org/viewvc/llvm-project?rev=96518&view=rev
Log:
Alphabetize #includes. No functionality change.
Modified:
cfe/trunk/include/clang/Checker/PathSensitive/GRState.h
Modified: cfe/trunk/include/clang/Checker/PathSensitive/GRState.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Checker/PathSensitive/GRState.h?rev=96518&r1=96517&r2=96518&view=diff
==============================================================================
--- cfe/trunk/include/clang/Checker/PathSensitive/GRState.h (original)
+++ cfe/trunk/include/clang/Checker/PathSensitive/GRState.h Wed Feb 17 15:27:48 2010
@@ -16,25 +16,24 @@
// FIXME: Reduce the number of includes.
+#include "clang/AST/ASTContext.h"
+#include "clang/AST/Decl.h"
+#include "clang/AST/Expr.h"
+#include "clang/Analysis/Analyses/LiveVariables.h"
+#include "clang/Checker/PathSensitive/ConstraintManager.h"
#include "clang/Checker/PathSensitive/Environment.h"
+#include "clang/Checker/PathSensitive/GRCoreEngine.h"
#include "clang/Checker/PathSensitive/Store.h"
-#include "clang/Checker/PathSensitive/ConstraintManager.h"
#include "clang/Checker/PathSensitive/ValueManager.h"
-#include "clang/Checker/PathSensitive/GRCoreEngine.h"
-#include "clang/AST/Expr.h"
-#include "clang/AST/Decl.h"
-#include "clang/AST/ASTContext.h"
-#include "clang/Analysis/Analyses/LiveVariables.h"
-#include "llvm/Support/Casting.h"
-#include "llvm/System/DataTypes.h"
#include "llvm/ADT/APSInt.h"
+#include "llvm/ADT/DenseSet.h"
#include "llvm/ADT/FoldingSet.h"
#include "llvm/ADT/ImmutableMap.h"
#include "llvm/ADT/SmallVector.h"
-#include "llvm/ADT/DenseSet.h"
#include "llvm/Support/Allocator.h"
+#include "llvm/Support/Casting.h"
#include "llvm/Support/raw_ostream.h"
-
+#include "llvm/System/DataTypes.h"
#include <functional>
namespace clang {
More information about the cfe-commits
mailing list