We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Due topic on GCC code works runtime not compile time, e.g.
static_assert(ctti::type_id() != ctti::type_id("hello"), "compile-time type-id comparison");
yields compile error. Be careful.
The text was updated successfully, but these errors were encountered:
Due topic on GCC code works runtime not compile time, e.g. static_assert(ctti::type_id() != ctti::type_id("hello"), "compile-time type-id comparison"); yields compile error. Be careful.
Be careful again, bug was fixed here https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66639 gcc-mirror/gcc@ddd0d18 So it works on gcc 9.1.0 and above
Sorry, something went wrong.
Enable constexpr __PRETTY_FUNCTION__ only for gcc >= 9.1.0.
aefdac4
See also: Manu343726/ctti#35 Signed-off-by: Tao He <[email protected]>
Enable constexpr __PRETTY_FUNCTION__ only for gcc >= 9.1.0. (#492)
5e2125a
No branches or pull requests
Due topic on GCC code works runtime not compile time, e.g.
static_assert(ctti::type_id() != ctti::type_id("hello"), "compile-time type-id comparison");
yields compile error. Be careful.
The text was updated successfully, but these errors were encountered: