[libcxx] [test] Add missing <stdexcept> to name std::out_of_range to string.conversions\stold.pass.cpp.
llvm-svn: 357547
GitOrigin-RevId: 4c1581e2da81d640c019c2d9a6618db9eb4e471e
diff --git a/test/std/strings/string.conversions/stold.pass.cpp b/test/std/strings/string.conversions/stold.pass.cpp
index d079f84..1953167 100644
--- a/test/std/strings/string.conversions/stold.pass.cpp
+++ b/test/std/strings/string.conversions/stold.pass.cpp
@@ -16,9 +16,10 @@
// libc++abi.dylib and exceptions are not caught properly.
// XFAIL: with_system_cxx_lib=macosx10.7
-#include <string>
-#include <cmath>
#include <cassert>
+#include <cmath>
+#include <stdexcept>
+#include <string>
#include "test_macros.h"