id summary reporter owner description type status milestone component version severity resolution keywords cc 7639 Type Traits Documentation Error wmamrak@… John Maddock "In `is_function` section of type traits' documentation: [http://www.boost.org/doc/libs/1_51_0/libs/type_traits/doc/html/boost_typetraits/reference/is_function.html] it states: {{{ typedef int f1(); // f1 is of function type. typedef int (f2*)(); // f2 is a pointer to a function. typedef int (f3&)(); // f3 is a reference to a function. }}} It should be: {{{ typedef int (*f2)(); typedef int (&f3)(); }}} regards" Bugs closed To Be Determined type_traits Boost 1.51.0 Cosmetic fixed type_traits, documentation error