diff options
author | Lioncash <mathew1800@gmail.com> | 2020-08-18 20:24:51 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-08-18 20:24:54 +0200 |
commit | 999fc2feced62a9bbcf762ce7450c84117175864 (patch) | |
tree | 48e90034c1f1061127d2fcbe383219c7d10c5fd9 /src | |
parent | Merge pull request #4381 from Morph1984/fix-open-folder-installed-title (diff) | |
download | yuzu-999fc2feced62a9bbcf762ce7450c84117175864.tar yuzu-999fc2feced62a9bbcf762ce7450c84117175864.tar.gz yuzu-999fc2feced62a9bbcf762ce7450c84117175864.tar.bz2 yuzu-999fc2feced62a9bbcf762ce7450c84117175864.tar.lz yuzu-999fc2feced62a9bbcf762ce7450c84117175864.tar.xz yuzu-999fc2feced62a9bbcf762ce7450c84117175864.tar.zst yuzu-999fc2feced62a9bbcf762ce7450c84117175864.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/common/concepts.h | 4 |
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) { |