1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2026-06-15 09:06:08 -05:00

Linux: use "-std=c++11" for gcc 4.8 and adapt code to old compilers

This commit is contained in:
Mounir IDRASSI
2023-10-01 11:06:46 +02:00
parent da49ebb927
commit 19fa1f8684
4 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -21,7 +21,7 @@
namespace VeraCrypt
{
#if (__cplusplus >= 201103L)
#if (__cplusplus >= 201103L) || defined(__GXX_EXPERIMENTAL_CXX0X__)
#define VC_USE_NATIVE_PTR 1
#endif