Skip to content
Snippets Groups Projects
Unverified Commit 80fd831c authored by René Fritze's avatar René Fritze
Browse files

[type_traits] corrects struct usage

parent 736740c9
No related branches found
No related tags found
No related merge requests found
......@@ -224,7 +224,7 @@ struct is_complex<std::complex<T>> : public std::true_type
}; \
\
static const bool value = helper<T_local>::value; \
}
};
/**
* \brief Macro to statically check a type for a typedef.
......@@ -258,7 +258,7 @@ DXTC_has_typedef(Bar)< Foo >::value
static std::false_type helper(...); \
\
static const bool value = decltype(helper<T_local>(0))::value; \
}
};
/**
* \brief Macro to statically check a class or struct for a static member.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment