forked from OSchip/llvm-project
parent
cddaf8728f
commit
79bda47900
|
@ -33,7 +33,7 @@ namespace pdb {
|
|||
|
||||
template <typename T> static std::string formatUnknownEnum(T Value) {
|
||||
return formatv("unknown ({0})",
|
||||
static_cast<std::underlying_type<T>::type>(Value))
|
||||
static_cast<typename std::underlying_type<T>::type>(Value))
|
||||
.str();
|
||||
}
|
||||
|
||||
|
|
|
@ -38,7 +38,6 @@ public:
|
|||
private:
|
||||
std::string typeIndex(codeview::TypeIndex TI) const;
|
||||
|
||||
uint32_t Width;
|
||||
LinePrinter &P;
|
||||
bool RecordBytes = false;
|
||||
codeview::LazyRandomTypeCollection &Types;
|
||||
|
|
|
@ -45,8 +45,8 @@ public:
|
|||
private:
|
||||
StringRef getTypeName(codeview::TypeIndex TI) const;
|
||||
|
||||
uint32_t Width;
|
||||
LinePrinter &P;
|
||||
uint32_t Width;
|
||||
bool RecordBytes = false;
|
||||
codeview::LazyRandomTypeCollection &Types;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue