summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2020-08-18 14:24:51 -0400
committerGravatar Lioncash2020-08-18 14:24:54 -0400
commit999fc2feced62a9bbcf762ce7450c84117175864 (patch)
tree48e90034c1f1061127d2fcbe383219c7d10c5fd9
parentMerge pull request #4381 from Morph1984/fix-open-folder-installed-title (diff)
downloadyuzu-999fc2feced62a9bbcf762ce7450c84117175864.tar.gz
yuzu-999fc2feced62a9bbcf762ce7450c84117175864.tar.xz
yuzu-999fc2feced62a9bbcf762ce7450c84117175864.zip
common/concepts: Move <type_traits> include out of the Common namespace
This is a compiler/linker error waiting to happen.
Diffstat (limited to '')
-rw-r--r--src/common/concepts.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/concepts.h b/src/common/concepts.h
index 54252e778..5bef3ad67 100644
--- a/src/common/concepts.h
+++ b/src/common/concepts.h
@@ -4,10 +4,10 @@
4 4
5#pragma once 5#pragma once
6 6
7namespace Common {
8
9#include <type_traits> 7#include <type_traits>
10 8
9namespace Common {
10
11// Check if type is like an STL container 11// Check if type is like an STL container
12template <typename T> 12template <typename T>
13concept IsSTLContainer = requires(T t) { 13concept IsSTLContainer = requires(T t) {