Move to common namespace

This commit is contained in:
David Marcec
2020-08-03 19:30:39 +10:00
parent 4f4cbde9e5
commit f7df03e328
2 changed files with 8 additions and 4 deletions

View File

@@ -4,6 +4,8 @@
#pragma once
namespace Common {
// Check if type is like an STL container
template <typename T>
concept IsSTLContainer = requires(T t) {
@@ -18,3 +20,5 @@ concept IsSTLContainer = requires(T t) {
t.data();
t.size();
};
} // namespace Common