diff options
author | Reid Kleckner <rnk@google.com> | 2015-11-20 19:29:40 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2015-11-20 19:29:40 +0000 |
commit | 437b1b3ea5eea3db2ed73e6e0e3d77d13999c714 (patch) | |
tree | 1f25cffc6b7d9e90aeb20a4daf76fbb561030734 /llvm/lib/ProfileData/InstrProfWriter.cpp | |
parent | 7b57d87ed7b23ae6745053d13ad0178fd4ec7151 (diff) | |
download | llvm-437b1b3ea5eea3db2ed73e6e0e3d77d13999c714.zip llvm-437b1b3ea5eea3db2ed73e6e0e3d77d13999c714.tar.gz llvm-437b1b3ea5eea3db2ed73e6e0e3d77d13999c714.tar.bz2 |
Fix the Windows build, include <tuple> for std::tie
llvm-svn: 253698
Diffstat (limited to 'llvm/lib/ProfileData/InstrProfWriter.cpp')
-rw-r--r-- | llvm/lib/ProfileData/InstrProfWriter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/ProfileData/InstrProfWriter.cpp b/llvm/lib/ProfileData/InstrProfWriter.cpp index 465a4ea..9c4d311 100644 --- a/llvm/lib/ProfileData/InstrProfWriter.cpp +++ b/llvm/lib/ProfileData/InstrProfWriter.cpp @@ -16,6 +16,7 @@ #include "llvm/ADT/StringExtras.h" #include "llvm/Support/EndianStream.h" #include "llvm/Support/OnDiskHashTable.h" +#include <tuple> using namespace llvm; |