Remove silly semicolon.

llvm-svn: 56481
This commit is contained in:
Dale Johannesen 2008-09-22 23:28:18 +00:00
parent e2947e1e07
commit a0e1876584
1 changed files with 1 additions and 1 deletions

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;