summaryrefslogtreecommitdiff
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
commit4aefd6b7d4dadf8109221a89742725c116d8f8e0 (patch)
treeb6cea47a8fde646984abfe138325ccc046923420 /include/llvm/Assembly
parent44a2a79f1865807cf976932fac00648f60edfdbe (diff)
downloadllvm-4aefd6b7d4dadf8109221a89742725c116d8f8e0.tar.gz
llvm-4aefd6b7d4dadf8109221a89742725c116d8f8e0.tar.bz2
llvm-4aefd6b7d4dadf8109221a89742725c116d8f8e0.tar.xz
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 b8d505761f..edca08c46f 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;
}