From: Misha Brukman Date: Thu, 12 Dec 2002 05:28:39 +0000 (+0000) Subject: No need to specify the class if the method is within the class declaration. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=95c3d0e0fa96666bec254d3dbc8bf6d8cd3c6834;p=oota-llvm.git No need to specify the class if the method is within the class declaration. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4969 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/DataStructure.h b/include/llvm/Analysis/DataStructure.h index 800df9a8bfe..391f95a8102 100644 --- a/include/llvm/Analysis/DataStructure.h +++ b/include/llvm/Analysis/DataStructure.h @@ -109,8 +109,8 @@ private: // outside of the SCC) into functions in the SCC. It is not supposed to touch // functions IN the SCC at all. // - DSGraph &BUDataStructures::inlineNonSCCGraphs(Function &F, - std::set &SCCFunctions); + DSGraph &inlineNonSCCGraphs(Function &F, + std::set &SCCFunctions); DSGraph &calculateSCCGraph(Function &F, std::set &InlinedSCCFunctions); diff --git a/include/llvm/Analysis/DataStructure/DataStructure.h b/include/llvm/Analysis/DataStructure/DataStructure.h index 800df9a8bfe..391f95a8102 100644 --- a/include/llvm/Analysis/DataStructure/DataStructure.h +++ b/include/llvm/Analysis/DataStructure/DataStructure.h @@ -109,8 +109,8 @@ private: // outside of the SCC) into functions in the SCC. It is not supposed to touch // functions IN the SCC at all. // - DSGraph &BUDataStructures::inlineNonSCCGraphs(Function &F, - std::set &SCCFunctions); + DSGraph &inlineNonSCCGraphs(Function &F, + std::set &SCCFunctions); DSGraph &calculateSCCGraph(Function &F, std::set &InlinedSCCFunctions);