platform_thread_ref.cc 382 B

12345678910111213141516
  1. // Copyright 2021 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "base/threading/platform_thread_ref.h"
  5. #include <ostream>
  6. namespace base {
  7. std::ostream& operator<<(std::ostream& os, const PlatformThreadRef& ref) {
  8. os << ref.id_;
  9. return os;
  10. }
  11. } // namespace base