Files
TL/include/tl/vector.h
T
jeanlemotan 8297b0b45f First
2024-07-02 18:06:33 +02:00

13 lines
224 B
C++

#pragma once
#include "tl/detail/prologue.h"
#include <EASTL/vector.h>
//#include <vector>
namespace tl
{
using namespace eastl;
//template<typename T, typename A = std::allocator<T>>
//using vector = std::vector<T, A>;
}