id summary reporter owner description type status milestone component version severity resolution keywords cc 11986 TTI: has_static_member_function doesn't like function local classes with GCC lukester_null@… Edward Diener "Hi Not sure if this expected or known or impossible to fix, but it seems has_static_member_function doesn't work with function scope local classes in GCC (or clang; it's OK in VC++). Personally, I only tripped over it writing a test so the fix was simple (no function scope class) but I thought best to report it. Thanks Luke Elliott. {{{ #include #include BOOST_TTI_HAS_STATIC_MEMBER_FUNCTION(StaticFunction) int main() { class Nested { public: static void StaticFunction() { } }; BOOST_STATIC_ASSERT_MSG((has_static_member_function_StaticFunction::value), ""That's not gone well.""); } }}} " Bugs new To Be Determined tti Boost 1.59.0 Problem