[cfe-commits] r45965 - /cfe/trunk/include/clang/Analysis/PathSensitive/ExplodedGraph.h

Ted Kremenek kremenek at apple.com
Mon Jan 14 10:11:35 PST 2008


Author: kremenek
Date: Mon Jan 14 12:11:35 2008
New Revision: 45965

URL: http://llvm.org/viewvc/llvm-project?rev=45965&view=rev
Log:
Removed 'inline' keywords from methods now defined in ExplodedGraph.cpp.

Modified:
    cfe/trunk/include/clang/Analysis/PathSensitive/ExplodedGraph.h

Modified: cfe/trunk/include/clang/Analysis/PathSensitive/ExplodedGraph.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/PathSensitive/ExplodedGraph.h?rev=45965&r1=45964&r2=45965&view=diff

==============================================================================
--- cfe/trunk/include/clang/Analysis/PathSensitive/ExplodedGraph.h (original)
+++ cfe/trunk/include/clang/Analysis/PathSensitive/ExplodedGraph.h Mon Jan 14 12:11:35 2008
@@ -46,13 +46,13 @@
     
     ~NodeGroup();
     
-    inline ExplodedNodeImpl** begin() const;
+    ExplodedNodeImpl** begin() const;
     
-    inline ExplodedNodeImpl** end() const;
+    ExplodedNodeImpl** end() const;
     
-    inline unsigned size() const;
+    unsigned size() const;
     
-    inline bool empty() const;
+    bool empty() const;
     
     void addNode(ExplodedNodeImpl* N);
   };





More information about the cfe-commits mailing list