From 2e4da5e4abbccafd1a79eed57829826072a275be Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 13 Jul 2009 20:46:11 +0000 Subject: [PATCH] Delete a spurious const. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75493 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Target/TargetAsmInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {