blob: ad042df8cbc42aa41d292f151731d91e7e87ded1 [file] [log] [blame]
//===-- UserID.cpp ----------------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "lldb/Core/UserID.h"
#include "lldb/Core/Stream.h"
using namespace lldb;
using namespace lldb_private;
UserID::~UserID ()
{
}
Stream&
lldb_private::operator << (Stream& strm, const UserID& uid)
{
strm.Printf("{0x%8.8llx}", uid.GetID());
return strm;
}