diff --git a/test/optional_test_ref_portable_minimum.cpp b/test/optional_test_ref_portable_minimum.cpp index ec5b827..bf7af32 100644 --- a/test/optional_test_ref_portable_minimum.cpp +++ b/test/optional_test_ref_portable_minimum.cpp @@ -431,7 +431,7 @@ void test_swap() } template -void test_convertability_of_compatible_reference_types() +void test_convertibility_of_compatible_reference_types() { typename concrete_type_of::type v1(1); optional oN, o1(v1); @@ -489,11 +489,11 @@ int main() test_optional_const_ref(); test_optional_const_ref< optional >(); - test_convertability_of_compatible_reference_types(); - test_convertability_of_compatible_reference_types(); - test_convertability_of_compatible_reference_types(); - test_convertability_of_compatible_reference_types(); - test_convertability_of_compatible_reference_types, const optional >(); + test_convertibility_of_compatible_reference_types(); + test_convertibility_of_compatible_reference_types(); + test_convertibility_of_compatible_reference_types(); + test_convertibility_of_compatible_reference_types(); + test_convertibility_of_compatible_reference_types, const optional >(); return boost::report_errors(); }