From: Chris Lattner Date: Sat, 28 Aug 2010 03:42:45 +0000 (+0000) Subject: zap dead method X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=1ff90f7896e19e4d8e61dc0db146e5a76ba0fb0f;p=oota-llvm.git zap dead method git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112352 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/ClangAttrEmitter.cpp b/utils/TableGen/ClangAttrEmitter.cpp index 74ff6684265..8d3399a9597 100644 --- a/utils/TableGen/ClangAttrEmitter.cpp +++ b/utils/TableGen/ClangAttrEmitter.cpp @@ -98,8 +98,6 @@ namespace { : Argument(Arg, Attr), type(T) {} - std::string getType() const { return type; } - void writeAccessors(raw_ostream &OS) const { OS << " " << type << " get" << getUpperName() << "() const {\n"; OS << " return " << getLowerName() << ";\n";