[llvm] [TextAPI] Add DylibReader (PR #75006)

Thorsten Schütt via llvm-commits llvm-commits at lists.llvm.org
Mon Dec 11 01:16:04 PST 2023


================
@@ -103,6 +103,10 @@ class GlobalRecord : public Record {
 
   bool isFunction() const { return GV == Kind::Function; }
   bool isVariable() const { return GV == Kind::Variable; }
+  void setKind(const Kind V) {
----------------
tschuett wrote:

I am confused by the `const`: either no const or `const &`.

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


More information about the llvm-commits mailing list