Fix build of CodeView library

llvm-svn: 257662
This commit is contained in:
Reid Kleckner 2016-01-13 19:45:06 +00:00
parent 5fa978b4c0
commit 340205aac8
1 changed files with 2 additions and 1 deletions

View File

@ -10,6 +10,7 @@
#ifndef LLVM_DEBUGINFO_CODEVIEW_TYPEINDEX_H
#define LLVM_DEBUGINFO_CODEVIEW_TYPEINDEX_H
#include "llvm/Support/Endian.h"
#include <cassert>
#include <cinttypes>
@ -149,7 +150,7 @@ public:
static TypeIndex Float64() { return TypeIndex(SimpleTypeKind::Float64); }
private:
ulittle32_t Index;
support::ulittle32_t Index;
};
inline bool operator==(const TypeIndex &A, const TypeIndex &B) {