Changes between Initial Version and Version 1 of Ticket #13211
- Timestamp:
- Sep 14, 2017, 5:30:07 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13211 – Description
initial v1 1 1 The issue comes from the fact that BOOST_MAY_ALIAS is not always defined. E.g. 2 2 3 ``` 3 4 5 {{{ 4 6 // Type aliasing hint. 5 7 #if __has_attribute(__may_alias__) 6 8 # define BOOST_MAY_ALIAS __attribute__((__may_alias__)) 7 9 #endif 8 ``` 10 11 }}} 9 12 10 13 Wondering if this shouldn't be 11 14 12 ``` 15 16 17 {{{ 13 18 // Type aliasing hint. 14 19 #if __has_attribute(__may_alias__) … … 17 22 # define BOOST_MAY_ALIAS 18 23 #endif 19 ``` 24 }}} 20 25 21 26 27