Remove base/tl/allocator.h

This commit is contained in:
Robert Müller 2022-05-24 11:27:58 +02:00
parent 47098daa42
commit f9d49bd53e
2 changed files with 0 additions and 18 deletions

View file

@ -1686,7 +1686,6 @@ set_src(BASE GLOB_RECURSE src/base
math.h
system.cpp
system.h
tl/allocator.h
tl/range.h
tl/threading.h
unicode/confusables.cpp

View file

@ -1,17 +0,0 @@
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
/* If you are missing that file, acquire a complete release at teeworlds.com. */
#ifndef BASE_TL_ALLOCATOR_H
#define BASE_TL_ALLOCATOR_H
template<class T>
class allocator_default
{
public:
static T *alloc() { return new T; }
static void free(T *p) { delete p; }
static T *alloc_array(int size) { return new T[size]; }
static void free_array(T *p) { delete[] p; }
};
#endif // TL_FILE_ALLOCATOR_HPP