Fix tests to compile #9

This commit is contained in:
Arun M 2018-04-25 12:06:10 +05:30
parent 32099f6691
commit d60dd2c926
18 changed files with 14 additions and 10 deletions

View file

@ -1,6 +1,6 @@
#include <iostream>
#include <vector>
#include "./stack_alloc.hpp"
#include "jwt/stack_alloc.hpp"
template <typename T, size_t SZ = 2>
using SmallVector = std::vector<T, jwt::stack_alloc<T, SZ, alignof(T)>>;