Browse Source

Merge pull request #4547 from lioncash/header-concept

common/concepts: Move <type_traits> include out of the Common namespace
bunnei 6 năm trước cách đây
mục cha
commit
3b8a8cf825
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      src/common/concepts.h

+ 2 - 2
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) {