Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
6.8.1
-
0f2db7658 (dev)
Description
For example it fails to pick up "text" in this case:
#include <iostream> #include <QObject> template<std::size_t N> struct string_literal { constexpr string_literal(const char (&)[N]) noexcept { } }; template<string_literal d> struct A {}; struct B : A<QT_TRANSLATE_NOOP("Context", "text")> {}; int main(int argc, char *argv[]) {}