2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

common/concepts: Move <type_traits> include out of the Common namespace

This is a compiler/linker error waiting to happen.
This commit is contained in:
Lioncash 2020-08-18 14:24:51 -04:00
parent bea9ed2548
commit 999fc2fece

View file

@ -4,10 +4,10 @@
#pragma once
namespace Common {
#include <type_traits>
namespace Common {
// Check if type is like an STL container
template <typename T>
concept IsSTLContainer = requires(T t) {