diff options
| author | AlexSm <[email protected]> | 2024-01-18 11:28:56 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-01-18 11:28:56 +0100 |
| commit | 9d0a3761b3201e0d9db879a7adf91876ebdb0564 (patch) | |
| tree | 541d11ac878c18efd7ebca81e35112aa0fef995b /library/cpp/unified_agent_client | |
| parent | 404ef8886ecc9736bc58ade6da2fbd83b486a408 (diff) | |
Library import 8 (#1074)
* Library import 8
* Add contrib/libs/cxxsupp/libcxx/include/__verbose_abort
Diffstat (limited to 'library/cpp/unified_agent_client')
| -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 62e12108037..e58ffc8b116 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; } |
