]> granicus.if.org Git - clang/commitdiff
Removed 'inline' keywords from methods now defined in ExplodedGraph.cpp.
authorTed Kremenek <kremenek@apple.com>
Mon, 14 Jan 2008 18:11:35 +0000 (18:11 +0000)
committerTed Kremenek <kremenek@apple.com>
Mon, 14 Jan 2008 18:11:35 +0000 (18:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45965 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Analysis/PathSensitive/ExplodedGraph.h

index 1a9ec32f601b42e9b7366fa5157eaac05cd6a9b5..d2241dca23fe68c864e75fb81a7f24011f32aa07 100644 (file)
@@ -46,13 +46,13 @@ protected:
     
     ~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);
   };