Remove a compiler warning.

llvm-svn: 56478
This commit is contained in:
Dale Johannesen 2008-09-22 22:33:34 +00:00
parent c7fc5ed65f
commit 178d1843ea

View File

@ -31,6 +31,9 @@ namespace llvmc {
/// PopulateCompilationGraph - The auto-generated function that
/// populates the compilation graph with nodes and edges.
virtual void PopulateCompilationGraph(CompilationGraph&) const = 0;
/// Needed to avoid a compiler warning.
virtual ~BasePlugin() {};
};
typedef llvm::Registry<BasePlugin> PluginRegistry;