diff options
| author | Dan Gohman <gohman@apple.com> | 2009-07-13 20:46:11 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2009-07-13 20:46:11 +0000 |
| commit | 98c0e9276b02da4bfec5145c6cccecf286a858af (patch) | |
| tree | 6d55b889af5409604eff34584bd6f734fd6e01cd /include | |
| parent | 4e39d3e1148a9986d5b132247e701b1f3d753623 (diff) | |
| download | external_llvm-98c0e9276b02da4bfec5145c6cccecf286a858af.zip external_llvm-98c0e9276b02da4bfec5145c6cccecf286a858af.tar.gz external_llvm-98c0e9276b02da4bfec5145c6cccecf286a858af.tar.bz2 | |
Delete a spurious const.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75493 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
| -rw-r--r-- | include/llvm/Target/TargetAsmInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index d031d74..b38a2e6 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 { |
