mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
Remove extraneous ';'s.
llvm-svn: 148740
This commit is contained in:
parent
eed9085fca
commit
22382365ff
@ -174,7 +174,7 @@ public:
|
||||
return true;
|
||||
case JK_KeyValuePair:
|
||||
return false;
|
||||
};
|
||||
}
|
||||
llvm_unreachable("Invalid JSONAtom kind");
|
||||
}
|
||||
static bool classof(const JSONValue *Value) { return true; }
|
||||
@ -190,7 +190,7 @@ public:
|
||||
///
|
||||
/// This is the unescaped content of the JSON text.
|
||||
/// See http://www.ietf.org/rfc/rfc4627.txt for details.
|
||||
StringRef getRawText() const { return RawText; };
|
||||
StringRef getRawText() const { return RawText; }
|
||||
|
||||
private:
|
||||
JSONString(StringRef RawText) : JSONValue(JK_String), RawText(RawText) {}
|
||||
@ -380,7 +380,7 @@ public:
|
||||
case JK_KeyValuePair:
|
||||
case JK_String:
|
||||
return false;
|
||||
};
|
||||
}
|
||||
llvm_unreachable("Invalid JSONAtom kind");
|
||||
}
|
||||
static bool classof(const JSONContainer *Container) { return true; }
|
||||
|
@ -207,7 +207,7 @@ public:
|
||||
|
||||
HashDataContents(DIE *D, char Flags) :
|
||||
Die(D),
|
||||
Flags(Flags) { };
|
||||
Flags(Flags) { }
|
||||
#ifndef NDEBUG
|
||||
void print(raw_ostream &O) const {
|
||||
O << " Offset: " << Die->getOffset() << "\n";
|
||||
|
@ -119,7 +119,7 @@ public:
|
||||
bool AbortOnFailure = true) {
|
||||
// FIXME: not implemented.
|
||||
return 0;
|
||||
};
|
||||
}
|
||||
|
||||
/// recompileAndRelinkFunction - For the interpreter, functions are always
|
||||
/// up-to-date.
|
||||
|
Loading…
x
Reference in New Issue
Block a user