Remove unneeded class qualifier, contributed by Bjørn Wennberg
authorChris Lattner <sabre@nondot.org>
Wed, 8 Dec 2004 16:05:02 +0000 (16:05 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 8 Dec 2004 16:05:02 +0000 (16:05 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18625 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp

index bb7c5a6e8290f859a5cad2bf886f17453368dd8d..aa0723bd4ab022bff0b106dd2b6e07e543062604 100644 (file)
@@ -49,7 +49,7 @@ struct ProfilePaths : public FunctionPass {
   // Before this pass, make sure that there is only one 
   // entry and only one exit node for the function in the CFG of the function
   //
-  void ProfilePaths::getAnalysisUsage(AnalysisUsage &AU) const {
+  void getAnalysisUsage(AnalysisUsage &AU) const {
     AU.addRequired<UnifyFunctionExitNodes>();
   }
 };