Browse Source

Merge pull request #4547 from lioncash/header-concept

common/concepts: Move <type_traits> include out of the Common namespace
nce_cpp
bunnei 5 years ago
committed by GitHub
parent
commit
bb17f99ce6
  1. 4
      src/common/concepts.h

4
src/common/concepts.h

@ -4,10 +4,10 @@
#pragma once #pragma once
namespace Common {
#include <type_traits> #include <type_traits>
namespace Common {
// Check if type is like an STL container // Check if type is like an STL container
template <typename T> template <typename T>
concept IsSTLContainer = requires(T t) { concept IsSTLContainer = requires(T t) {

Loading…
Cancel
Save