From: Chris Lattner Date: Fri, 19 Aug 2005 17:58:49 +0000 (+0000) Subject: add a setName method to record X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=22c6202bb31b9e5f454552d93dbb42819d87cb93;p=oota-llvm.git add a setName method to record git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22912 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/Record.h b/utils/TableGen/Record.h index ce69d6778a6..4ca08902cfe 100644 --- a/utils/TableGen/Record.h +++ b/utils/TableGen/Record.h @@ -888,7 +888,7 @@ inline std::ostream &operator<<(std::ostream &OS, const RecordVal &RV) { } class Record { - const std::string Name; + std::string Name; std::vector TemplateArgs; std::vector Values; std::vector SuperClasses;