nginx-util: fix compilation with GCC13

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev 2023-07-01 16:44:54 -07:00
parent b044ba7b37
commit d71e28de37
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=nginx-util
PKG_VERSION:=1.6
PKG_RELEASE:=18
PKG_RELEASE:=19
PKG_MAINTAINER:=Peter Stadler <peter.stadler@student.uibk.ac.at>
include $(INCLUDE_DIR)/package.mk

View file

@ -159,7 +159,7 @@ class message {
both = keys;
}
both = concat(std::move(both), std::move(key_filter)...);
return std::move(message{msg, std::move(both)});
return message{msg, std::move(both)};
}
inline ~message() = default;