aboutsummaryrefslogtreecommitdiff
path: root/CRT/eastl_compat.hpp
blob: 773f7fae4859e203449f7efd821710b2b3b10074 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef EASTL_COMPAT
#define EASTL_COMPAT 1

#include <EASTL/string.h>

eastl::string to_string(int value);
eastl::string to_string(long value);
eastl::string to_string(long long value);
eastl::string to_string(unsigned int value);
eastl::string to_string(unsigned long int value);
eastl::string to_string(unsigned long long int value);
eastl::string to_string(float value);
eastl::string to_string(double value);

#endif