aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Assembly
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2008-02-20 12:07:57 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2008-02-20 12:07:57 +0000
commit6a4a93397215f7c1b10885726431fde515edde77 (patch)
treeb6cea47a8fde646984abfe138325ccc046923420 /include/llvm/Assembly
parent87ab838945609a74bd4757a87dbd2718ed2061ae (diff)
downloadexternal_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.h2
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;
}