From 1820fcbbc38e82daf43ebe759200050ce05b3fe1 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 18 Jun 2019 12:30:40 +0200 Subject: constmethod for accessor-type methods Apply the constmethod plugin, but only to accessor-type methods, e.g. IsFoo(), GetBar(), etc, where we can be sure of that constifying is a reasonable thing to do. Change-Id: Ibc97f5f359a0992dd1ce2d66f0189f8a0a43d98a Reviewed-on: https://gerrit.libreoffice.org/74269 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sal/osl/unx/socket.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sal') diff --git a/sal/osl/unx/socket.cxx b/sal/osl/unx/socket.cxx index 0984acb86aae..f708c4911797 100644 --- a/sal/osl/unx/socket.cxx +++ b/sal/osl/unx/socket.cxx @@ -582,7 +582,7 @@ struct oslAddrInfo freeaddrinfo(pAddrInfoList); } - const char* getHostName() + const char* getHostName() const { assert(pAddrInfoList); return pAddrInfoList->ai_canonname; -- cgit