From ffa64ccea259be9bd616b2b815dffc7c1fb9f2a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20Krzemie=C5=84ski?= Date: Sat, 10 Oct 2015 15:26:32 +0200 Subject: [PATCH] ASSIGN -> CONVERT --- ...onal_xconfig_NO_PROPER_CONVERT_FROM_CONST_INT_fail.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/optional_xconfig_NO_PROPER_CONVERT_FROM_CONST_INT_fail.cpp b/test/optional_xconfig_NO_PROPER_CONVERT_FROM_CONST_INT_fail.cpp index ae16261..42b3606 100644 --- a/test/optional_xconfig_NO_PROPER_CONVERT_FROM_CONST_INT_fail.cpp +++ b/test/optional_xconfig_NO_PROPER_CONVERT_FROM_CONST_INT_fail.cpp @@ -12,7 +12,7 @@ #include "boost/core/lightweight_test.hpp" #include "boost/optional/detail/optional_config.hpp" -#ifndef BOOST_OPTIONAL_CONFIG_NO_PROPER_ASSIGN_FROM_CONST_INT +#ifndef BOOST_OPTIONAL_CONFIG_NO_PROPER_CONVERT_FROM_CONST_INT int main() { @@ -26,9 +26,9 @@ const int global_i = 0; struct Binder { - Binder(const int& i) - { - BOOST_TEST(&i == &global_i); + Binder(const int& i) + { + BOOST_TEST(&i == &global_i); } };