aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGiacomo Pozzoni <giacomopoz@gmail.com>2018-12-19 11:27:44 +0100
committerShauren <shauren.trinity@gmail.com>2018-12-19 11:27:44 +0100
commit166bb311635bd68da09960987177972608b84396 (patch)
treed70bd61daa0e316dad39c7f86a817065ad6f3788 /src
parent950e50ec4d102c0b852378bbe85a501d7450ed5c (diff)
Shared/Misc: Use C99 conformant snprintf and vsnprintf in Visual Studio (#22876)
Diffstat (limited to 'src')
-rw-r--r--src/common/Common.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/common/Common.h b/src/common/Common.h
index 9fdcb78587a..dc47ad9aee4 100644
--- a/src/common/Common.h
+++ b/src/common/Common.h
@@ -44,9 +44,7 @@
#if TRINITY_COMPILER == TRINITY_COMPILER_MICROSOFT
-#define snprintf _snprintf
#define atoll _atoi64
-#define vsnprintf _vsnprintf
#define llabs _abs64
#else