commit | 5a127cdcbfae6f753b05d8cd1de8d8271f7d8a23 | [log] [tgz] |
---|---|---|
author | Marshall Clow <mclow.lists@gmail.com> | Tue Dec 18 23:19:00 2018 +0000 |
committer | Marshall Clow <mclow.lists@gmail.com> | Tue Dec 18 23:19:00 2018 +0000 |
tree | 625fd3366faad5285125ba9fde0905ca7bd81a65 | |
parent | cb67fad44a59cb783d2047a27ad387ed3ec2a466 [diff] [blame] |
Portability fix: add missing includes and static_casts. Reviewed as https://reviews.llvm.org/D55777. Thanks to Andrey Maksimov for the patch. llvm-svn: 349566
diff --git a/libcxx/test/std/strings/string.conversions/to_wstring.pass.cpp b/libcxx/test/std/strings/string.conversions/to_wstring.pass.cpp index 281aa1a..2208ec5 100644 --- a/libcxx/test/std/strings/string.conversions/to_wstring.pass.cpp +++ b/libcxx/test/std/strings/string.conversions/to_wstring.pass.cpp
@@ -19,6 +19,7 @@ // wstring to_wstring(double val); // wstring to_wstring(long double val); +#include <limits> #include <string> #include <cassert> #include <sstream>