Remove silly semicolon.
authorDale Johannesen <dalej@apple.com>
Mon, 22 Sep 2008 23:28:18 +0000 (23:28 +0000)
committerDale Johannesen <dalej@apple.com>
Mon, 22 Sep 2008 23:28:18 +0000 (23:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56481 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CompilerDriver/Plugin.h

index 03df74944982225c9a7c29bff518994928121481..1dc0df9d550ba3f19408d75bdd87ef25edf414c9 100644 (file)
@@ -33,7 +33,7 @@ namespace llvmc {
     virtual void PopulateCompilationGraph(CompilationGraph&) const = 0;
 
     /// Needed to avoid a compiler warning.
-    virtual ~BasePlugin() {};
+    virtual ~BasePlugin() {}
   };
 
   typedef llvm::Registry<BasePlugin> PluginRegistry;