0001-Revert-Use-std-namespace-for-snprintf.patch 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. From 29bfb6ac06b7304d326e3b70fc0209a702b89d83 Mon Sep 17 00:00:00 2001
  2. From: Baruch Siach <baruch@tkos.co.il>
  3. Subject: [PATCH] Revert "Use std namespace for snprintf."
  4. This reverts commit 1c58876185d2a4ed87dac4a54b82f607e74f55fd.
  5. std::snprintf() is only available in C++11, which is not provided by
  6. all compilers. Since the C library snprintf() can easily be used as a
  7. replacement on Linux systems, this patch changes jsoncpp to use the C
  8. library snprintf() instead of C++11 std::snprintf(), fixing the build error
  9. below:
  10. src/lib_json/json_writer.cpp:33:18: error: 'snprintf' is not a member of 'std'
  11. Upstream status: sent upstream
  12. package/jsoncpp/0001-Revert-Use-std-namespace-for-snprintf.patch
  13. Signed-off-by: Baruch Siach <baruch@tkos.co.il>
  14. ---
  15. src/lib_json/json_writer.cpp | 2 --
  16. 1 file changed, 2 deletions(-)
  17. diff --git a/src/lib_json/json_writer.cpp b/src/lib_json/json_writer.cpp
  18. index 83102fd2bb86..f7ad1e21bbc0 100644
  19. --- a/src/lib_json/json_writer.cpp
  20. +++ b/src/lib_json/json_writer.cpp
  21. @@ -29,8 +29,6 @@
  22. #if defined(_MSC_VER) && _MSC_VER < 1500 // VC++ 8.0 and below
  23. #define snprintf _snprintf
  24. -#else
  25. -#define snprintf std::snprintf
  26. #endif
  27. #if defined(_MSC_VER) && _MSC_VER >= 1400 // VC++ 8.0
  28. --
  29. 2.1.4