add a setName method to record

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22912 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-08-19 17:58:49 +00:00
parent 936dd9274a
commit 22c6202bb3

View File

@ -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<std::string> TemplateArgs;
std::vector<RecordVal> Values;
std::vector<Record*> SuperClasses;