Delete SlowOperationInformer, which is no longer used.
[oota-llvm.git] / include / llvm / Support / Format.h
index 164ad6a35330931d84b67d9a56ed16c65030215b..f64e3db7d6506acb6e7443d5a7a80e2df1c06713 100644 (file)
 
 #include <cassert>
 #include <cstdio>
+#ifdef _MSC_VER
+// FIXME: This define is wrong:
+//  - _snprintf does not guarantee that trailing null is always added - if
+//    there is no space for null, it does not report any error.
+//  - According to C++ standard, snprintf should be visible in the 'std' 
+//    namespace - this define makes this impossible.
+#define snprintf _snprintf
+#endif
 
 namespace llvm {