diff options
author | thegeorg <thegeorg@yandex-team.com> | 2025-02-28 21:58:11 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.com> | 2025-02-28 22:21:47 +0300 |
commit | 9ba742f4d36b4a3d879b4cf8d9234165413f4a0d (patch) | |
tree | 0f90f6ab52b19a2f796df0eef1ff80fa3ce67f10 | |
parent | 0047ca5b59e3fe09612d57d79d24b19c05e2a4fe (diff) | |
download | ydb-9ba742f4d36b4a3d879b4cf8d9234165413f4a0d.tar.gz |
Update macOS SDK to XCode 16.2
commit_hash:83e3fda2d8ef984a8105effdc3e7849e97105e96
-rw-r--r-- | contrib/restricted/googletest/googletest/include/gtest/gtest-printers.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/restricted/googletest/googletest/include/gtest/gtest-printers.h b/contrib/restricted/googletest/googletest/include/gtest/gtest-printers.h index 6fc97d9143..e3df46b74f 100644 --- a/contrib/restricted/googletest/googletest/include/gtest/gtest-printers.h +++ b/contrib/restricted/googletest/googletest/include/gtest/gtest-printers.h @@ -829,6 +829,11 @@ void PrintTo(const ::std::pair<T1, T2>& value, ::std::ostream* os) { *os << ')'; } +template <typename C, typename D> +void PrintTo(const ::std::chrono::time_point<C, D>& value, ::std::ostream* os) { + *os << "TimeStamp(" << static_cast<int64_t>(value.time_since_epoch().count()) << ")"; +} + // Implements printing a non-reference type T by letting the compiler // pick the right overload of PrintTo() for T. template <typename T> |