mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-22 19:49:49 +00:00
Fix 80-col.
llvm-svn: 134409
This commit is contained in:
parent
342a6e8a5f
commit
4b7808fe50
@ -44,7 +44,10 @@ class RelocationRef {
|
|||||||
const ObjectFile *OwningObject;
|
const ObjectFile *OwningObject;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
RelocationRef() : OwningObject(NULL) { std::memset(&RelocationPimpl, 0, sizeof(RelocationPimpl)); }
|
RelocationRef() : OwningObject(NULL) {
|
||||||
|
std::memset(&RelocationPimpl, 0, sizeof(RelocationPimpl));
|
||||||
|
}
|
||||||
|
|
||||||
RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner);
|
RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner);
|
||||||
|
|
||||||
bool operator==(const RelocationRef &Other) const;
|
bool operator==(const RelocationRef &Other) const;
|
||||||
@ -59,7 +62,10 @@ class SymbolRef {
|
|||||||
const ObjectFile *OwningObject;
|
const ObjectFile *OwningObject;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
SymbolRef() : OwningObject(NULL) { std::memset(&SymbolPimpl, 0, sizeof(SymbolPimpl)); }
|
SymbolRef() : OwningObject(NULL) {
|
||||||
|
std::memset(&SymbolPimpl, 0, sizeof(SymbolPimpl));
|
||||||
|
}
|
||||||
|
|
||||||
SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner);
|
SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner);
|
||||||
|
|
||||||
bool operator==(const SymbolRef &Other) const;
|
bool operator==(const SymbolRef &Other) const;
|
||||||
@ -86,7 +92,10 @@ class SectionRef {
|
|||||||
const ObjectFile *OwningObject;
|
const ObjectFile *OwningObject;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
SectionRef() : OwningObject(NULL) { std::memset(&SectionPimpl, 0, sizeof(SectionPimpl)); }
|
SectionRef() : OwningObject(NULL) {
|
||||||
|
std::memset(&SectionPimpl, 0, sizeof(SectionPimpl));
|
||||||
|
}
|
||||||
|
|
||||||
SectionRef(DataRefImpl SectionP, const ObjectFile *Owner);
|
SectionRef(DataRefImpl SectionP, const ObjectFile *Owner);
|
||||||
|
|
||||||
bool operator==(const SectionRef &Other) const;
|
bool operator==(const SectionRef &Other) const;
|
||||||
|
Loading…
Reference in New Issue
Block a user