Opened 7 years ago
Closed 5 years ago
#11884 closed Bugs (fixed)
Typo in is_mem_fun_pointer_tester.hpp
Reported by: | Owned by: | John Maddock | |
---|---|---|---|
Milestone: | To Be Determined | Component: | type_traits |
Version: | Boost 1.60.0 | Severity: | Problem |
Keywords: | Cc: |
Description
The file boost/type_traits/detail/is_mem_fun_pointer_tester.hpp contains two typos which does not affect normal compilations but confuse tools like Incredibuild which try to parse the source code.
The last define/include/undef stanza is missing PPI
, making these preprocessor statements invalid. Here a unified diff to fix these typos:
-
(a) .#is_mem_fun_pointer_tester.hpp.1.1.2.4 vs. (b) is_mem_fun_pointer_tester.hpp
a b 28 28 #define PPI <boost/preprocessor/enum_params.hpp> 29 29 #include PPI 30 30 #undef PPI 31 #define <boost/preprocessor/comma_if.hpp>31 #define PPI <boost/preprocessor/comma_if.hpp> 32 32 #include PPI 33 #undef 33 #undef PPI 34 34 #endif 35 35 36 36 namespace boost {
Note:
See TracTickets
for help on using tickets.
Fixed in develop, thanks!