mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-07 23:50:00 +01:00
19 lines
416 B
C++
19 lines
416 B
C++
/* This file is part of the dynarmic project.
|
|
* Copyright (c) 2016 MerryMage
|
|
* SPDX-License-Identifier: 0BSD
|
|
*/
|
|
|
|
#include <ostream>
|
|
#include <fmt/format.h>
|
|
|
|
#include "frontend/ir/location_descriptor.h"
|
|
|
|
namespace Dynarmic::IR {
|
|
|
|
std::ostream& operator<<(std::ostream& o, const LocationDescriptor& descriptor) {
|
|
o << fmt::format("{{{:016x}}}", descriptor.Value());
|
|
return o;
|
|
}
|
|
|
|
} // namespace Dynarmic::IR
|