From: Ted Kremenek Date: Mon, 14 Jan 2008 18:11:35 +0000 (+0000) Subject: Removed 'inline' keywords from methods now defined in ExplodedGraph.cpp. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5d5480380d7b7c3590a0283ddf239220e514e576;p=clang Removed 'inline' keywords from methods now defined in ExplodedGraph.cpp. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45965 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Analysis/PathSensitive/ExplodedGraph.h b/include/clang/Analysis/PathSensitive/ExplodedGraph.h index 1a9ec32f60..d2241dca23 100644 --- a/include/clang/Analysis/PathSensitive/ExplodedGraph.h +++ b/include/clang/Analysis/PathSensitive/ExplodedGraph.h @@ -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); };