1//===-- UserID.cpp --------------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "lldb/Utility/UserID.h"
10#include "lldb/Utility/Stream.h"
11
12#include <cinttypes>
13
14using namespace lldb;
15using namespace lldb_private;
16
17Stream &lldb_private::operator<<(Stream &strm, const UserID &uid) {
18 strm.Printf(format: "{0x%8.8" PRIx64 "}", uid.GetID());
19 return strm;
20}
21

source code of lldb/source/Utility/UserID.cpp