diff options
| author | Justin Bogner <mail@justinbogner.com> | 2015-02-04 11:19:16 +0000 |
|---|---|---|
| committer | Justin Bogner <mail@justinbogner.com> | 2015-02-04 11:19:16 +0000 |
| commit | 1f92ce67c5dcc34e815ad103be0fcf7fce25fcac (patch) | |
| tree | 5c472b4c8840e2f40a002f29b148c29115042f73 | |
| parent | 4d31f58c8833427bb51a49c48868f4ce46fe5fa9 (diff) | |
| download | bcm5719-llvm-1f92ce67c5dcc34e815ad103be0fcf7fce25fcac.tar.gz bcm5719-llvm-1f92ce67c5dcc34e815ad103be0fcf7fce25fcac.zip | |
InstrProf: std::to_string needs to #include <string>
llvm-svn: 228136
| -rw-r--r-- | llvm/unittests/ProfileData/CoverageMappingTest.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/unittests/ProfileData/CoverageMappingTest.cpp b/llvm/unittests/ProfileData/CoverageMappingTest.cpp index 5477f814300..5709f91b0a4 100644 --- a/llvm/unittests/ProfileData/CoverageMappingTest.cpp +++ b/llvm/unittests/ProfileData/CoverageMappingTest.cpp @@ -13,6 +13,8 @@ #include "llvm/Support/raw_ostream.h" #include "gtest/gtest.h" +#include <string> + using namespace llvm; using namespace coverage; |

