mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-02 21:11:25 +12:00
Butcher narrow cast a little (don't print value).
Also remove some forward declarations from util/types.hpp If they don't work properly, it's easier to remove them.
This commit is contained in:
parent
b7bf316c1a
commit
43a58df8a0
8 changed files with 15 additions and 29 deletions
|
@ -10,7 +10,7 @@ namespace fmt
|
|||
static std::string format(const CharT(&)[N], const Args&...);
|
||||
}
|
||||
|
||||
template <typename T, typename>
|
||||
template <typename T, typename = void>
|
||||
struct fmt_unveil
|
||||
{
|
||||
static_assert(sizeof(T) > 0, "fmt_unveil<> error: incomplete type");
|
||||
|
@ -245,6 +245,9 @@ struct fmt_type_info
|
|||
template <typename... Args>
|
||||
using fmt_args_t = const u64(&&)[sizeof...(Args) + 1];
|
||||
|
||||
template <typename Arg>
|
||||
using fmt_unveil_t = typename fmt_unveil<Arg>::type;
|
||||
|
||||
namespace fmt
|
||||
{
|
||||
// Base-57 format helper
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue