From 6df7ac7277db92799ceec8207aac887bf2b54de3 Mon Sep 17 00:00:00 2001 From: Chen Weihang Date: Thu, 8 Jul 2021 17:14:05 +0800 Subject: [PATCH] up cxx11 to cxx14 (#34015) --- paddle/fluid/extension/include/ext_all.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/paddle/fluid/extension/include/ext_all.h b/paddle/fluid/extension/include/ext_all.h index f2b3bcf519..6987b33012 100644 --- a/paddle/fluid/extension/include/ext_all.h +++ b/paddle/fluid/extension/include/ext_all.h @@ -14,8 +14,8 @@ limitations under the License. */ #pragma once -#if !defined(_MSC_VER) && __cplusplus < 199711L -#error C++11 or later compatible compiler is required to use Paddle. +#if !defined(_MSC_VER) && __cplusplus < 201402L +#error C++14 or later compatible compiler is required to use Paddle. #endif #ifdef _WIN32 -- GitLab