IsGoodAddr() bug fixed

This commit is contained in:
Nekotekina 2014-07-14 23:15:30 +04:00
parent a71053ae15
commit 01aa74e4a8
6 changed files with 181 additions and 220 deletions

View file

@ -6,6 +6,12 @@
#define thread_local __thread
#endif
#ifdef _WIN32
#define noinline __declspec(noinline)
#else
#define noinline __attribute__((noinline))
#endif
template<size_t size>
void strcpy_trunc(char (&dst)[size], const std::string& src)
{