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 | 4aefd6b7d4dadf8109221a89742725c116d8f8e0 (patch) | |
tree | b6cea47a8fde646984abfe138325ccc046923420 /include/llvm/Assembly | |
parent | 44a2a79f1865807cf976932fac00648f60edfdbe (diff) | |
download | external_llvm-4aefd6b7d4dadf8109221a89742725c116d8f8e0.zip external_llvm-4aefd6b7d4dadf8109221a89742725c116d8f8e0.tar.gz external_llvm-4aefd6b7d4dadf8109221a89742725c116d8f8e0.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; } |