blob: ad042df8cbc42aa41d292f151731d91e7e87ded1 [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- UserID.cpp ----------------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "lldb/Core/UserID.h"
11#include "lldb/Core/Stream.h"
12
13using namespace lldb;
14using namespace lldb_private;
15
Chris Lattner30fdc8d2010-06-08 16:52:24 +000016UserID::~UserID ()
17{
18}
19
Chris Lattner30fdc8d2010-06-08 16:52:24 +000020Stream&
21lldb_private::operator << (Stream& strm, const UserID& uid)
22{
Greg Clayton81c22f62011-10-19 18:09:39 +000023 strm.Printf("{0x%8.8llx}", uid.GetID());
Chris Lattner30fdc8d2010-06-08 16:52:24 +000024 return strm;
25}