mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-08 08:00:01 +01:00
16 lines
289 B
C++
16 lines
289 B
C++
/* This file is part of the dynarmic project.
|
|
* Copyright (c) 2016 MerryMage
|
|
* SPDX-License-Identifier: 0BSD
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Dynarmic::Common {
|
|
|
|
template <typename T>
|
|
constexpr char SignToChar(T value) {
|
|
return value >= 0 ? '+' : '-';
|
|
}
|
|
|
|
} // namespace Dynarmic::Common
|