summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-08-20 05:29:45 +0200
committerGitHub <noreply@github.com>2020-08-20 05:29:45 +0200
commit3b8a8cf825306032242000f14dc8dcacde6335d3 (patch)
treefcf2f0911c7fa21b2832b1ff5476c8260ee8b4d5 /src
parentMerge pull request #4552 from yuzu-emu/revert-4537-tz (diff)
parentcommon/concepts: Move <type_traits> include out of the Common namespace (diff)
downloadyuzu-3b8a8cf825306032242000f14dc8dcacde6335d3.tar
yuzu-3b8a8cf825306032242000f14dc8dcacde6335d3.tar.gz
yuzu-3b8a8cf825306032242000f14dc8dcacde6335d3.tar.bz2
yuzu-3b8a8cf825306032242000f14dc8dcacde6335d3.tar.lz
yuzu-3b8a8cf825306032242000f14dc8dcacde6335d3.tar.xz
yuzu-3b8a8cf825306032242000f14dc8dcacde6335d3.tar.zst
yuzu-3b8a8cf825306032242000f14dc8dcacde6335d3.zip
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 @@
#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) {