From 6a4a93397215f7c1b10885726431fde515edde77 Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Wed, 20 Feb 2008 12:07:57 +0000 Subject: Fix newly-introduced 4.3 warnings git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47375 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Assembly/Parser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/llvm') 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; } -- cgit v1.1