[llvm] r228136 - InstrProf: std::to_string needs to #include <string>

Justin Bogner mail at justinbogner.com
Wed Feb 4 03:19:17 PST 2015


Author: bogner
Date: Wed Feb  4 05:19:16 2015
New Revision: 228136

URL: http://llvm.org/viewvc/llvm-project?rev=228136&view=rev
Log:
InstrProf: std::to_string needs to #include <string>

Modified:
    llvm/trunk/unittests/ProfileData/CoverageMappingTest.cpp

Modified: llvm/trunk/unittests/ProfileData/CoverageMappingTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/ProfileData/CoverageMappingTest.cpp?rev=228136&r1=228135&r2=228136&view=diff
==============================================================================
--- llvm/trunk/unittests/ProfileData/CoverageMappingTest.cpp (original)
+++ llvm/trunk/unittests/ProfileData/CoverageMappingTest.cpp Wed Feb  4 05:19:16 2015
@@ -13,6 +13,8 @@
 #include "llvm/Support/raw_ostream.h"
 #include "gtest/gtest.h"
 
+#include <string>
+
 using namespace llvm;
 using namespace coverage;
 





More information about the llvm-commits mailing list