include/comphelper/interfacecontainer4.hxx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-)
New commits: commit aa0a2266f0fd9f53b50944aa183b7e78fe675300 Author: Noel Grandin <noelgran...@gmail.com> AuthorDate: Sat Nov 27 16:21:56 2021 +0200 Commit: Noel Grandin <noel.gran...@collabora.co.uk> CommitDate: Sat Nov 27 17:00:30 2021 +0100 fix header include guard was overlapping with the header it was copied from Change-Id: I84d15a6ce59949e04de4f738c730642b633135aa Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125944 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk> diff --git a/include/comphelper/interfacecontainer4.hxx b/include/comphelper/interfacecontainer4.hxx index 0260ac4f5c0b..c81aa6b3afbd 100644 --- a/include/comphelper/interfacecontainer4.hxx +++ b/include/comphelper/interfacecontainer4.hxx @@ -16,8 +16,7 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#ifndef INCLUDED_COMPHELPER_INTERFACECONTAINER3_H -#define INCLUDED_COMPHELPER_INTERFACECONTAINER3_H +#pragma once #include <sal/config.h> @@ -323,6 +322,5 @@ void OInterfaceContainerHelper4<ListenerT>::disposeAndClear(std::unique_lock<std template <class ListenerT> void OInterfaceContainerHelper4<ListenerT>::clear() { maData->clear(); } } -#endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */