diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2008-02-20 12:07:57 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2008-02-20 12:07:57 +0000 |
commit | 6a4a93397215f7c1b10885726431fde515edde77 (patch) | |
tree | b6cea47a8fde646984abfe138325ccc046923420 /include/llvm/Assembly | |
parent | 87ab838945609a74bd4757a87dbd2718ed2061ae (diff) | |
download | external_llvm-6a4a93397215f7c1b10885726431fde515edde77.zip external_llvm-6a4a93397215f7c1b10885726431fde515edde77.tar.gz external_llvm-6a4a93397215f7c1b10885726431fde515edde77.tar.bz2 |
Fix newly-introduced 4.3 warnings
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47375 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Assembly')
-rw-r--r-- | include/llvm/Assembly/Parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Assembly/Parser.h b/include/llvm/Assembly/Parser.h index b8d5057..edca08c 100644 --- a/include/llvm/Assembly/Parser.h +++ b/include/llvm/Assembly/Parser.h @@ -80,7 +80,7 @@ public: // ParserOptions in effect. If positional information is not applicable, // these will return a value of -1. // - inline const void getErrorLocation(int &Line, int &Column) const { + inline void getErrorLocation(int &Line, int &Column) const { Line = LineNo; Column = ColumnNo; } |