Missing 'public' keyword.

llvm-svn: 43121
This commit is contained in:
Gordon Henriksen 2007-10-18 11:31:21 +00:00
parent 070aca5d25
commit 03368e85b8
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ namespace llvm {
static const char *descof(const entry &Entry) { return Entry.ShortDesc; }
};
struct TargetMachineRegistry : Registry<TargetMachine> {
struct TargetMachineRegistry : public Registry<TargetMachine> {
/// getClosestStaticTargetForModule - Given an LLVM module, pick the best
/// target that is compatible with the module. If no close target can be
/// found, this returns null and sets the Error string to a reason.