From 6a5dbd267e81227e0c2d24a77d7cb60c6e336532 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnter=20Obiltschnig?= Date: Sun, 11 Apr 2021 16:04:14 +0200 Subject: [PATCH] TypeHandler: move instead of copy --- Data/include/Poco/Data/TypeHandler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data/include/Poco/Data/TypeHandler.h b/Data/include/Poco/Data/TypeHandler.h index 4cb6efc1d..b5a17c200 100644 --- a/Data/include/Poco/Data/TypeHandler.h +++ b/Data/include/Poco/Data/TypeHandler.h @@ -292,7 +292,7 @@ public: if (pExt->extract(pos++, val)) { - obj = val; + obj = std::move(val); } else {