diff options
author | Giacomo Pozzoni <giacomopoz@gmail.com> | 2018-12-19 11:27:44 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2018-12-31 14:27:05 +0100 |
commit | 2f140693e8737f9ded5b495544151c8c42ab081b (patch) | |
tree | 2cc865015a5bf680983d927a6c6aa73e982c25a9 | |
parent | 8488150dee5820caa1b3e8f59a3e8c7c5dd5788c (diff) |
Shared/Misc: Use C99 conformant snprintf and vsnprintf in Visual Studio (#22876)
(cherry picked from commit 166bb311635bd68da09960987177972608b84396)
-rw-r--r-- | src/common/Common.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/common/Common.h b/src/common/Common.h index 3963b99fa40..ef1eca9de2f 100644 --- a/src/common/Common.h +++ b/src/common/Common.h @@ -42,9 +42,7 @@ #if TRINITY_COMPILER == TRINITY_COMPILER_MICROSOFT -#define snprintf _snprintf #define atoll _atoi64 -#define vsnprintf _vsnprintf #define llabs _abs64 #else |