diff options
author | bunnei <bunneidev@gmail.com> | 2020-08-19 23:29:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-19 23:29:45 -0400 |
commit | 3b8a8cf825306032242000f14dc8dcacde6335d3 (patch) | |
tree | fcf2f0911c7fa21b2832b1ff5476c8260ee8b4d5 /src | |
parent | 354811e5562568ef61f62e3da8e1398ec83faac0 (diff) | |
parent | 999fc2feced62a9bbcf762ce7450c84117175864 (diff) |
Merge pull request #4547 from lioncash/header-concept
common/concepts: Move <type_traits> include out of the Common namespace
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) { |