From f51b081ec2db36513ba2d84dee26472681d2d1b0 Mon Sep 17 00:00:00 2001 From: Changming Sun Date: Wed, 29 May 2019 14:03:22 -0700 Subject: [PATCH] Revert "fixing clang build failure" (#1055) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Not needed any more. Because we don't build the date library. And Sheil says: "It’s a little bit intrusive for callers to be forced onto cpp14 just because they are consuming onnxruntime." --- cmake/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index 9fa7314c09..f5e6080578 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -13,7 +13,7 @@ include(CheckCXXCompilerFlag) include(CheckLanguage) # Set C++14 as standard for the whole project -set(CMAKE_CXX_STANDARD 14 CACHE STRING "") +set(CMAKE_CXX_STANDARD 14) # General C# prperties if (onnxruntime_BUILD_CSHARP)