include/o3tl/lazy_update.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit c0a035d20f2f2f52c3d6f6b216ea3cd068ea2baa Author: Noel Grandin <[email protected]> AuthorDate: Thu May 19 09:36:10 2022 +0200 Commit: Noel Grandin <[email protected]> CommitDate: Thu May 19 15:37:11 2022 +0200 fix location of #include after commit 343eed477ee7b55aa450bbc2aee6786dc0d9a071 clang-tidy modernize-pass-by-value in o3tl Change-Id: I1800c0ba63abb0862b8c9aef185ebdf416245f3e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134602 Tested-by: Jenkins Reviewed-by: Noel Grandin <[email protected]> diff --git a/include/o3tl/lazy_update.hxx b/include/o3tl/lazy_update.hxx index a3053080c476..6f9325dfd17e 100644 --- a/include/o3tl/lazy_update.hxx +++ b/include/o3tl/lazy_update.hxx @@ -1,5 +1,3 @@ -#include <utility> - /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. @@ -22,6 +20,8 @@ #ifndef INCLUDED_O3TL_LAZY_UPDATE_HXX #define INCLUDED_O3TL_LAZY_UPDATE_HXX +#include <utility> + namespace o3tl { /** Update output object lazily
