mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 14:35:46 +00: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:
parent
0e803716d2
commit
e478c61eeb
1 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue