From: Dan Gohman Date: Mon, 13 Jul 2009 20:46:11 +0000 (+0000) Subject: Delete a spurious const. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=2e4da5e4abbccafd1a79eed57829826072a275be;p=oota-llvm.git Delete a spurious const. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75493 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index d031d746578..b38a2e67430 100644 --- a/include/llvm/Target/TargetAsmInfo.h +++ b/include/llvm/Target/TargetAsmInfo.h @@ -697,7 +697,7 @@ namespace llvm { char getSeparatorChar() const { return SeparatorChar; } - const unsigned getCommentColumn() const { + unsigned getCommentColumn() const { return CommentColumn; } const char *getCommentString() const {