Skip to content

Commit

Permalink
[Cherry-pick] Up cxx11 check to cxx14 (#34015) (#34034)
Browse files Browse the repository at this point in the history
[Cherry-pick] Up cxx11 check to cxx14 #34034
  • Loading branch information
chenwhql committed Jul 9, 2021
1 parent f2f2fd8 commit 8417ad6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions paddle/fluid/extension/include/ext_all.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8417ad6

Please sign in to comment.