Remove silly semicolon.

llvm-svn: 56481
This commit is contained in:
Dale Johannesen 2008-09-22 23:28:18 +00:00
parent 28970ed355
commit c279625563

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;