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
This commit is contained in:
Misha Brukman 2002-12-12 05:28:39 +00:00
parent 3fc46450b7
commit 95c3d0e0fa
2 changed files with 4 additions and 4 deletions

View File

@ -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<Function*> &SCCFunctions);
DSGraph &inlineNonSCCGraphs(Function &F,
std::set<Function*> &SCCFunctions);
DSGraph &calculateSCCGraph(Function &F,
std::set<Function*> &InlinedSCCFunctions);

View File

@ -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<Function*> &SCCFunctions);
DSGraph &inlineNonSCCGraphs(Function &F,
std::set<Function*> &SCCFunctions);
DSGraph &calculateSCCGraph(Function &F,
std::set<Function*> &InlinedSCCFunctions);