From 2bd527c67622eb6cf22cd310c0fed215dbba6183 Mon Sep 17 00:00:00 2001 From: Jacob Lambert Date: Wed, 29 Jan 2025 08:58:17 -0800 Subject: [PATCH] SWDEV-387063 - Use clang default for C++ version Instead of enforcing c++14 here, we can instead use the current clang default Change-Id: Ib0a178a53c1377f2910edf6fab82b2bac6567ac7 [ROCm/clr commit: 33e48b9629d24d3dac6f7e533800aa70799e6596] --- projects/clr/hipamd/src/hiprtc/hiprtcInternal.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/projects/clr/hipamd/src/hiprtc/hiprtcInternal.cpp b/projects/clr/hipamd/src/hiprtc/hiprtcInternal.cpp index 544f7bb6db..7427b9c1eb 100644 --- a/projects/clr/hipamd/src/hiprtc/hiprtcInternal.cpp +++ b/projects/clr/hipamd/src/hiprtc/hiprtcInternal.cpp @@ -184,7 +184,6 @@ RTCCompileProgram::RTCCompileProgram(std::string name_) : RTCProgram(name_), fgp compile_options_.push_back(hipVerMajor); compile_options_.push_back(hipVerMinor); compile_options_.push_back(hipVerPatch); - compile_options_.push_back("-std=c++14"); compile_options_.push_back("-Wno-gnu-line-marker"); compile_options_.push_back("-Wno-missing-prototypes"); #ifdef _WIN32