From 9a29a753e8b9ef85a170311870544521b8d7ec9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Sch=C3=B6pflin?= Date: Wed, 28 Dec 2005 11:05:31 +0000 Subject: [PATCH] Fixed lexical_cast_test which was no longer working after the last test framework update. [SVN r32176] --- lexical_cast_test.cpp | 3 ++- test/Jamfile | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lexical_cast_test.cpp b/lexical_cast_test.cpp index 1e7f7ed..9573832 100644 --- a/lexical_cast_test.cpp +++ b/lexical_cast_test.cpp @@ -19,8 +19,9 @@ #endif #include + +#include #include -#include #if defined(BOOST_NO_STRINGSTREAM) || \ defined(BOOST_NO_STD_WSTRING) || \ diff --git a/test/Jamfile b/test/Jamfile index 73bc860..7842cb3 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -27,7 +27,7 @@ DEPENDS all : test ; : [ run implicit_cast.cpp ] [ compile-fail implicit_cast_fail.cpp ] [ run ../cast_test.cpp ] - [ run ../lexical_cast_test.cpp ] + [ run ../lexical_cast_test.cpp ../../test/build/boost_unit_test_framework ] ; }