id summary reporter owner description type status milestone component version severity resolution keywords cc 11884 Typo in is_mem_fun_pointer_tester.hpp Martin Jerabek John Maddock "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: {{{#!patch --- .#is_mem_fun_pointer_tester.hpp.1.1.2.4 2016-01-04 13:57:06.000000000 +0100 +++ is_mem_fun_pointer_tester.hpp 2016-01-04 13:58:41.306322500 +0100 @@ -28,9 +28,9 @@ #define PPI #include PPI #undef PPI -#define +#define PPI #include PPI -#undef +#undef PPI #endif namespace boost { }}}" Bugs closed To Be Determined type_traits Boost 1.60.0 Problem fixed