Remove silly semicolon.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56481 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dale Johannesen 2008-09-22 23:28:18 +00:00
parent 87a0f10dc7
commit 869aed7d83

View 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;