From 999fc2feced62a9bbcf762ce7450c84117175864 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 18 Aug 2020 14:24:51 -0400 Subject: [PATCH] common/concepts: Move include out of the Common namespace This is a compiler/linker error waiting to happen. --- src/common/concepts.h | 4 ++-- 1 file 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 +namespace Common { + // Check if type is like an STL container template concept IsSTLContainer = requires(T t) {