diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2009-12-21 20:19:37 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2009-12-21 20:19:37 +0000 |
commit | 7b1eb8a4091ff4e76323ce2d4a42d5d14b5e3f50 (patch) | |
tree | 388969593979eeb8f6036d8b99feb5511e4e72b4 /include | |
parent | 7058f9c114cbfcaa3276948806f108a6d362eda7 (diff) |
Remove uber-gross hack. The define _snprintf to snprintf is invalid due to two reasons: 1. Accroding to C++ standard snprintf should be available in std namespace (and __gnu_cxx in case of GCC to). Such ifdef will change all snprintf's to _snprintf's, but won't bring snprintf to all necessary namespaces. Thus e.g. any locale-using code on mingw will yield an error (include this file + string to see the result) 2. MSVCRT's _snprintf does not comply with C99 standard. Standard one is snprintf.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91842 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/Format.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/llvm/Support/Format.h b/include/llvm/Support/Format.h index 340f51735e..164ad6a353 100644 --- a/include/llvm/Support/Format.h +++ b/include/llvm/Support/Format.h @@ -25,9 +25,6 @@ #include <cassert> #include <cstdio> -#ifdef WIN32 -#define snprintf _snprintf -#endif namespace llvm { |