Opened 10 years ago
Closed 10 years ago
#7832 closed Bugs (fixed)
Missing and invalid macros in Boost.Move
| Reported by: | Owned by: | Ion Gaztañaga | |
|---|---|---|---|
| Milestone: | To Be Determined | Component: | move | 
| Version: | Boost 1.52.0 | Severity: | Problem | 
| Keywords: | Cc: | 
Description
For BOOST_NO_RVALUE_REFERENCES copy assign ref macros for templates are defined as
BOOST_COPY_REF_3_TEMPL_ARGS
BOOST_COPY_REF_2_TEMPL_ARGS
, for !BOOST_NO_RVALUE_REFERENCES they are
BOOST_MOVE_COPY_ASSIGN_REF_2_TEMPL_ARGS
BOOST_MOVE_COPY_ASSIGN_REF_3_TEMPL_ARGS
, and they should probably be
BOOST_COPY_ASSIGN_REF_2_TEMPL_ARGS
BOOST_COPY_ASSIGN_REF_3_TEMPL_ARGS
For !BOOST_NO_RVALUE_REFERENCES
BOOST_COPY_ASSIGN_REF_BEG and BOOST_COPY_ASSIGN_REF_END is not defined.
  Note:
 See   TracTickets
 for help on using tickets.
    

(In [82230]) Fixes #7832