mirror of
https://github.com/yuzu-mirror/dynarmic.git
synced 2026-01-15 13:00:26 +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
|