[Mlir-commits] [mlir] [NFC][MLIR][TableGen] Eliminate `llvm::` for commonly used types (PR #110841)

Jakub Kuderski llvmlistbot at llvm.org
Wed Oct 2 08:35:49 PDT 2024


================
@@ -707,7 +709,7 @@ class DefGenerator {
   void emitParsePrintDispatch(ArrayRef<AttrOrTypeDef> defs);
 
   /// The set of def records to emit.
-  std::vector<const llvm::Record *> defRecords;
+  std::vector<const Record *> defRecords;
----------------
kuhar wrote:

BTW, why do we use `std::vector` here instead of `SmallVector`. Is this intentional?

https://github.com/llvm/llvm-project/pull/110841


More information about the Mlir-commits mailing list