Bump to C++17
This commit is contained in:
parent
3e4c12cf56
commit
a4f8bd4ee0
@ -1,7 +1,7 @@
|
||||
APP_ABI := armeabi-v7a x86
|
||||
APP_CFLAGS := -Oz -std=gnu11 \
|
||||
-DMAGISK_VERSION="${MAGISK_VERSION}" -DMAGISK_VER_CODE=${MAGISK_VER_CODE}
|
||||
APP_CPPFLAGS := -std=c++14
|
||||
APP_CPPFLAGS := -std=c++17
|
||||
APP_STL := c++_static
|
||||
APP_PLATFORM := android-16
|
||||
|
||||
|
@ -8,7 +8,7 @@ void* operator new(std::size_t s) { return malloc(s); }
|
||||
void* operator new[](std::size_t s) { return malloc(s); }
|
||||
void operator delete(void *p) { free(p); }
|
||||
void operator delete[](void *p) { free(p); }
|
||||
void* operator new(std::size_t s, const std::nothrow_t&) { return malloc(s); }
|
||||
void* operator new[](std::size_t s, const std::nothrow_t&) { return malloc(s); }
|
||||
void operator delete(void *p, const std::nothrow_t&) { free(p); }
|
||||
void operator delete[](void *p, const std::nothrow_t&) { free(p); }
|
||||
void* operator new(std::size_t s, const std::nothrow_t&) noexcept { return malloc(s); }
|
||||
void* operator new[](std::size_t s, const std::nothrow_t&) noexcept { return malloc(s); }
|
||||
void operator delete(void *p, const std::nothrow_t&) noexcept { free(p); }
|
||||
void operator delete[](void *p, const std::nothrow_t&) noexcept { free(p); }
|
||||
|
Loading…
Reference in New Issue
Block a user