diff options
author | AlexSm <alex@ydb.tech> | 2024-01-18 11:28:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-18 11:28:56 +0100 |
commit | 9d0a3761b3201e0d9db879a7adf91876ebdb0564 (patch) | |
tree | 541d11ac878c18efd7ebca81e35112aa0fef995b /library/cpp/unified_agent_client/client.h | |
parent | 404ef8886ecc9736bc58ade6da2fbd83b486a408 (diff) | |
download | ydb-9d0a3761b3201e0d9db879a7adf91876ebdb0564.tar.gz |
Library import 8 (#1074)
* Library import 8
* Add contrib/libs/cxxsupp/libcxx/include/__verbose_abort
Diffstat (limited to 'library/cpp/unified_agent_client/client.h')
-rw-r--r-- | library/cpp/unified_agent_client/client.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/unified_agent_client/client.h b/library/cpp/unified_agent_client/client.h index 62e1210803..e58ffc8b11 100644 --- a/library/cpp/unified_agent_client/client.h +++ b/library/cpp/unified_agent_client/client.h @@ -40,8 +40,8 @@ namespace NUnifiedAgent { // TLog instance for client library's own logs. // // Default: TLoggerOperator<TGlobalLog>::Log() - TClientParameters& SetLog(TLog& log) { - Log = log; + TClientParameters& SetLog(TLog log) { + Log = std::move(log); return *this; } |