From 7bd27ccaceaab60d81827690004c1482f490f72a Mon Sep 17 00:00:00 2001 From: Fernando Cacciola Date: Fri, 28 Nov 2003 15:33:07 +0000 Subject: [PATCH] Some headers were moved from "utility" to "detail" [SVN r20990] --- test/optional_test.cpp | 6 +++--- test/optional_test_inplace.cpp | 4 ++-- test/optional_test_inplace_fail.cpp | 2 +- test/optional_test_inplace_fail2.cpp | 2 +- test/optional_test_ref.cpp | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/test/optional_test.cpp b/test/optional_test.cpp index ff0e06d..41bbe4b 100644 --- a/test/optional_test.cpp +++ b/test/optional_test.cpp @@ -21,15 +21,15 @@ #pragma hdrstop #endif -#include "boost/utility/none.hpp" +#include "boost/detail/none.hpp" #include "boost/test/minimal.hpp" -#include "optional_test_common.cpp" +#include "optional_test_common.cpp" void test_implicit_construction ( optional opt, double v, double z ) { - check_value(opt,v,z); + check_value(opt,v,z); } void test_implicit_construction ( optional opt, X const& v, X const& z ) diff --git a/test/optional_test_inplace.cpp b/test/optional_test_inplace.cpp index dc6865d..b56ad1c 100644 --- a/test/optional_test_inplace.cpp +++ b/test/optional_test_inplace.cpp @@ -18,8 +18,8 @@ #include "boost/optional.hpp" #ifndef BOOST_OPTIONAL_NO_INPLACE_FACTORY_SUPPORT -#include "boost/utility/in_place_factory.hpp" -#include "boost/utility/typed_in_place_factory.hpp" +#include "boost/detail/in_place_factory.hpp" +#include "boost/detail/typed_in_place_factory.hpp" #endif #ifdef __BORLANDC__ diff --git a/test/optional_test_inplace_fail.cpp b/test/optional_test_inplace_fail.cpp index 49d8f17..2b75410 100644 --- a/test/optional_test_inplace_fail.cpp +++ b/test/optional_test_inplace_fail.cpp @@ -18,7 +18,7 @@ #include "boost/optional.hpp" #ifndef BOOST_OPTIONAL_NO_INPLACE_FACTORY_SUPPORT -#include "boost/utility/in_place_factory.hpp" +#include "boost/detail/in_place_factory.hpp" #endif #ifdef __BORLANDC__ diff --git a/test/optional_test_inplace_fail2.cpp b/test/optional_test_inplace_fail2.cpp index e5d0260..8435a56 100644 --- a/test/optional_test_inplace_fail2.cpp +++ b/test/optional_test_inplace_fail2.cpp @@ -18,7 +18,7 @@ #include "boost/optional.hpp" #ifndef BOOST_OPTIONAL_NO_INPLACE_FACTORY_SUPPORT -#include "boost/utility/typed_in_place_factory.hpp" +#include "boost/detail/typed_in_place_factory.hpp" #endif #ifdef __BORLANDC__ diff --git a/test/optional_test_ref.cpp b/test/optional_test_ref.cpp index e687415..1c3e3ad 100644 --- a/test/optional_test_ref.cpp +++ b/test/optional_test_ref.cpp @@ -21,7 +21,7 @@ #pragma hdrstop #endif -#include "boost/utility/none.hpp" +#include "boost/detail/none.hpp" #include "boost/test/minimal.hpp"