diff options
author | hor911 <hor911@ydb.tech> | 2022-07-18 17:18:51 +0300 |
---|---|---|
committer | hor911 <hor911@ydb.tech> | 2022-07-18 17:18:51 +0300 |
commit | 09b4fccb98c8d8a57604f9e747b466219cc5fccd (patch) | |
tree | 2cbec00b3edaf4a192b56c7a6298cd4a0a55e6fc /contrib/libs/fmt | |
parent | 526b2789bffbc9b3e315fcd39e6b94026efb8a71 (diff) | |
download | ydb-09b4fccb98c8d8a57604f9e747b466219cc5fccd.tar.gz |
Better better logging
Diffstat (limited to 'contrib/libs/fmt')
-rw-r--r-- | contrib/libs/fmt/test/gtest-extra.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/libs/fmt/test/gtest-extra.h b/contrib/libs/fmt/test/gtest-extra.h index 36be158bbb..010bde066b 100644 --- a/contrib/libs/fmt/test/gtest-extra.h +++ b/contrib/libs/fmt/test/gtest-extra.h @@ -67,7 +67,8 @@ class OutputRedirect { fmt::file original_; // Original file passed to redirector. fmt::file read_end_; // Read end of the pipe where the output is redirected. - GTEST_DISALLOW_COPY_AND_ASSIGN_(OutputRedirect); + OutputRedirect(const OutputRedirect&) = delete; + OutputRedirect& operator= (const OutputRedirect&) = delete; void flush(); void restore(); |