From eac56ac0da8afc0648e6eed28f59ce18eceb79d4 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 6 Aug 2003 23:01:18 +0000 Subject: Ick, add the RIGHT accessor git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7656 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/TableGen/Record.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils/TableGen/Record.h') diff --git a/utils/TableGen/Record.h b/utils/TableGen/Record.h index ab48555..b26e13e 100644 --- a/utils/TableGen/Record.h +++ b/utils/TableGen/Record.h @@ -601,7 +601,7 @@ public: } Record *getNodeType() const { return NodeTypeDef; } - const std::vector getArgs() const { return Args; } + const std::vector &getArgs() const { return Args; } virtual void print(std::ostream &OS) const; }; -- cgit v1.1