<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">--- ./src/StringUtil.cpp	2024-01-29 19:35:43
+++ ./src/StringUtil.cpp	2024-01-29 19:35:58
@@ -41,11 +41,7 @@
         while (1) {
             va_list args_copy;
 
-#if defined(_MSC_VER) || defined(__BORLANDC__) || !(defined(__cplusplus) &amp;&amp; (__cplusplus &gt;= 201103L))
-            args_copy = args;
-#else
             va_copy(args_copy, args);
-#endif
 
             int n = VSNPRINTF(buffer, size, format, args_copy);
 
</pre></body></html>