...
This commit is contained in:
parent
95aca3381d
commit
e24e7dddec
1 changed files with 2 additions and 1 deletions
|
@ -6,6 +6,7 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <array>
|
#include <array>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
#include "allocator.h"
|
#include "allocator.h"
|
||||||
|
|
||||||
|
@ -22,7 +23,7 @@ namespace MultiArrayTools
|
||||||
template <typename T>
|
template <typename T>
|
||||||
struct NumTypeMap
|
struct NumTypeMap
|
||||||
{
|
{
|
||||||
static constexpr size_t num = 0;
|
static size_t num() { assert(0); return 0; };
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
|
|
Loading…
Reference in a new issue