Skip to content

Commit

Permalink
Merge pull request #5110 from bbi10/177597618
Browse files Browse the repository at this point in the history
Fix build error in bslmf_unwrapreference (DRQS 177597618)
  • Loading branch information
cppguru authored and GitHub Enterprise committed Dec 11, 2024
2 parents 5aa9844 + 8215025 commit 949be4c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions groups/bsl/bslmf/bslmf_unwrapreference.t.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -281,13 +281,13 @@ int main(int argc, char *argv[])
ASSERT_UNWRAP_REF(bsl::reference_wrapper<TYPE >, 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::*&);

Expand Down

0 comments on commit 949be4c

Please sign in to comment.