diff --git a/groups/bsl/bslmf/bslmf_unwrapreference.t.cpp b/groups/bsl/bslmf/bslmf_unwrapreference.t.cpp index e0f7065145..28d7ac3ea8 100644 --- a/groups/bsl/bslmf/bslmf_unwrapreference.t.cpp +++ b/groups/bsl/bslmf/bslmf_unwrapreference.t.cpp @@ -281,13 +281,13 @@ int main(int argc, char *argv[]) ASSERT_UNWRAP_REF(bsl::reference_wrapper, RESULT) #endif - ASSERT_UNWRAP_REF_WRAPPED(void*, void*&); - ASSERT_UNWRAP_REF_WRAPPED(int, int&); - ASSERT_UNWRAP_REF_WRAPPED(int&, int&); - ASSERT_UNWRAP_REF_WRAPPED(Enum, Enum&); - ASSERT_UNWRAP_REF_WRAPPED(Struct, Struct&); - ASSERT_UNWRAP_REF_WRAPPED(Union, Union&); - ASSERT_UNWRAP_REF_WRAPPED(Class, Class&); + ASSERT_UNWRAP_REF_WRAPPED(void*, void*&); + ASSERT_UNWRAP_REF_WRAPPED(int, int&); + ASSERT_UNWRAP_REF_WRAPPED(const int, const int&); + ASSERT_UNWRAP_REF_WRAPPED(Enum, Enum&); + ASSERT_UNWRAP_REF_WRAPPED(Struct, Struct&); + ASSERT_UNWRAP_REF_WRAPPED(Union, Union&); + ASSERT_UNWRAP_REF_WRAPPED(Class, Class&); ASSERT_UNWRAP_REF_WRAPPED(int Class::*, int Class::*&);