We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2df641 commit 9090260Copy full SHA for 9090260
1 file changed
src/wasm-type-printing.h
@@ -49,6 +49,7 @@ template<typename Subclass> struct TypeNameGeneratorBase {
49
private:
50
constexpr void assertValidUsage() {
51
// TODO: Convert to C++20 requires check
52
+ // The check need MSVC 18.6.0+, otherwise it will cause compiler crash.
53
#if (!defined(__GNUC__) || __GNUC__ >= 14)
54
// Check that the subclass provides `getNames` with the correct type.
55
using Self = TypeNameGeneratorBase<Subclass>;
0 commit comments