diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml index f39827fb2..b5ba4bfa5 100644 --- a/.github/workflows/pull_request.yaml +++ b/.github/workflows/pull_request.yaml @@ -32,4 +32,4 @@ jobs: test_library: uses: NWChemEx/.github/.github/workflows/test_nwx_library.yaml@master with: - compilers: '["gcc-11", "clang-14"]' + compilers: '["gcc-14", "clang-19"]' diff --git a/include/pluginplay/fields/module_input.ipp b/include/pluginplay/fields/module_input.ipp index 50b7f7005..2384f6938 100644 --- a/include/pluginplay/fields/module_input.ipp +++ b/include/pluginplay/fields/module_input.ipp @@ -120,7 +120,7 @@ auto& ModuleInput::change(T&& new_value) { if constexpr(detail_::IsCString::value) { change_(wrap_value_(std::string(new_value))); } else { - change_(std::move(wrap_value_(std::forward(new_value)))); + change_(wrap_value_(std::forward(new_value))); } return *this; } diff --git a/include/pluginplay/fields/module_result.ipp b/include/pluginplay/fields/module_result.ipp index 7da5c50a8..550b4c656 100644 --- a/include/pluginplay/fields/module_result.ipp +++ b/include/pluginplay/fields/module_result.ipp @@ -46,7 +46,7 @@ void ModuleResult::change(T&& new_value) { else if constexpr(detail_::IsCString::value) change_(wrap_value_(std::string(new_value))); else - change_(std::move(wrap_value_(std::forward(new_value)))); + change_(wrap_value_(std::forward(new_value))); } template