We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6e800d commit a3f272aCopy full SHA for a3f272a
c2rust-ast-exporter/src/AstExporter.cpp
@@ -326,7 +326,7 @@ class TypeEncoder final : public TypeVisitor<TypeEncoder> {
326
if (kind >= BuiltinType::SveInt8 && kind <= BuiltinType::SveBool
327
#if CLANG_VERSION_MAJOR >= 13
328
/* RISC-V vector types */
329
- || kind >= clang::BuiltinType::RvvInt8mf8 && kind <= clang::BuiltinType::RvvBool64
+ || kind >= BuiltinType::RvvInt8mf8 && kind <= BuiltinType::RvvBool64
330
#endif // CLANG_VERSION_MAJOR >= 13
331
) {
332
// Declare ElemType and ElemCount as needed by various Clang versions
0 commit comments