From 970df50e4813b7e4bd0a7426f7a7f6c25c6b79ec Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Thu, 6 Jan 2005 20:01:41 +0000 Subject: Removed useless 'const' in return value of some functions. --- src/addressList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/addressList.cpp') diff --git a/src/addressList.cpp b/src/addressList.cpp index 33708ceb..85178961 100644 --- a/src/addressList.cpp +++ b/src/addressList.cpp @@ -220,7 +220,7 @@ address* addressList::getAddressAt(const int pos) } -const address* const addressList::getAddressAt(const int pos) const +const address* addressList::getAddressAt(const int pos) const { return (m_list[pos]); } -- cgit