Merge remote-tracking branch 'origin/hotfix/forward_missing_in_optional' into development

This commit is contained in:
John Wellbelove 2019-08-03 13:13:23 +01:00
commit 73e1a36e43
3 changed files with 7 additions and 1 deletions

View File

@ -39,6 +39,8 @@ SOFTWARE.
#include "exception.h"
#include "error_handler.h"
#include "stl/utility.h"
namespace etl
{
//*****************************************************************************

View File

@ -39,7 +39,7 @@ SOFTWARE.
#define ETL_VERSION_MAJOR 14
#define ETL_VERSION_MINOR 29
#define ETL_VERSION_PATCH 0
#define ETL_VERSION_PATCH 1
#define ETL_VERSION ETL_STRINGIFY(ETL_VERSION_MAJOR) ETL_STRINGIFY(ETL_VERSION_MINOR) ETL_STRINGIFY(ETL_VERSION_PATCH)
#define ETL_VERSION_W ETL_WIDE_STRING(ETL_CONCAT(ETL_CONCAT(ETL_VERSION_MAJOR, ETL_VERSION_MINOR), ETL_VERSION_PATCH))

View File

@ -1,3 +1,7 @@
===============================================================================
14.29.1
Added #include "stl/utility.h" to etl::optional
===============================================================================
14.29.0
Added const parameters and ETL_CONST_EXPR to etl::array_view