Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions include/exec/__detail/__system_context_default_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,10 @@ namespace exec::__system_context_default_impl {
/// Keeps track of the backends for the system context interfaces.
template <typename _Interface, typename _Impl>
struct __instance_data {
// work around for https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119652
constexpr __instance_data() noexcept // NOLINT(modernize-use-equals-default)
{}

/// Gets the current instance; if there is no instance, uses the current factory to create one.
auto __get_current_instance() -> std::shared_ptr<_Interface> {
// If we have a valid instance, return it.
Expand Down
Loading