Skip to content
Merged
Changes from 1 commit
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/etl/optional.h
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ namespace etl
storage.construct(etl::forward<TArgs>(args)...);
}

#if ETL_HAS_INITIALIZER_LIST
//*******************************************
/// Construct from initializer_list and arguments.
//*******************************************
Expand All @@ -205,6 +206,7 @@ namespace etl
{
storage.construct(ilist, etl::forward<TArgs>(args)...);
}
#endif
#endif

//***************************************************************************
Expand Down Expand Up @@ -816,6 +818,7 @@ namespace etl
storage.construct(etl::forward<TArgs>(args)...);
}

#if ETL_HAS_INITIALIZER_LIST
//*******************************************
/// Construct from initializer_list and arguments.
//*******************************************
Expand All @@ -826,6 +829,7 @@ namespace etl
{
storage.construct(ilist, etl::forward<TArgs>(args)...);
}
#endif
#endif

//***************************************************************************
Expand Down
Loading