summaryrefslogtreecommitdiff
path: root/zen/legacy_compiler.h
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-06-20 07:46:53 -0400
committerB. Stack <bgstack15@gmail.com>2023-06-20 07:46:53 -0400
commitf76994f1fb3e25c4563c9d8afce6bbc86701d1d2 (patch)
treeb39389163603195a0169af57712eb0765e5c11f4 /zen/legacy_compiler.h
parentadd upstream 12.3 (diff)
downloadFreeFileSync-f76994f1fb3e25c4563c9d8afce6bbc86701d1d2.tar.gz
FreeFileSync-f76994f1fb3e25c4563c9d8afce6bbc86701d1d2.tar.bz2
FreeFileSync-f76994f1fb3e25c4563c9d8afce6bbc86701d1d2.zip
add upstream 12.412.4
Diffstat (limited to 'zen/legacy_compiler.h')
-rw-r--r--zen/legacy_compiler.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/zen/legacy_compiler.h b/zen/legacy_compiler.h
index 8606f95c..2070d60f 100644
--- a/zen/legacy_compiler.h
+++ b/zen/legacy_compiler.h
@@ -20,7 +20,8 @@
GCC https://gcc.gnu.org/projects/cxx-status.html
libstdc++ https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html
- Clang https://clang.llvm.org/cxx_status.html#cxx20
+ Clang https://clang.llvm.org/cxx_status.html
+ Xcode https://developer.apple.com/xcode/cpp
libc++ https://libcxx.llvm.org/cxx2a_status.html */
@@ -39,6 +40,9 @@ basic_string<Char, Traits, Alloc> operator+(basic_string<Char, Traits, Alloc>&&
}
//---------------------------------------------------------------------------------
+//support for std::string::resize_and_overwrite()
+#define ZEN_HAVE_RESIZE_AND_OVERWRITE 1
+
namespace zen
{
double fromChars(const char* first, const char* last);
bgstack15