Skip to content

Commit 8417ad6

Browse files
authored
[Cherry-pick] Up cxx11 check to cxx14 (#34015) (#34034)
[Cherry-pick] Up cxx11 check to cxx14 #34034
1 parent f2f2fd8 commit 8417ad6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

paddle/fluid/extension/include/ext_all.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ limitations under the License. */
1414

1515
#pragma once
1616

17-
#if !defined(_MSC_VER) && __cplusplus < 199711L
18-
#error C++11 or later compatible compiler is required to use Paddle.
17+
#if !defined(_MSC_VER) && __cplusplus < 201402L
18+
#error C++14 or later compatible compiler is required to use Paddle.
1919
#endif
2020

2121
#ifdef _WIN32

0 commit comments

Comments
 (0)