Merge remote-tracking branch 'origin/master' into development

This commit is contained in:
John Wellbelove 2019-02-13 11:17:44 +01:00
parent 5d2bc59956
commit d92a457f46
3 changed files with 7 additions and 2 deletions

View File

@ -600,6 +600,6 @@ namespace etl
typedef std::atomic<ptrdiff_t> atomic_ptrdiff_t;
typedef std::atomic<intmax_t> atomic_intmax_t;
typedef std::atomic<uintmax_t> atomic_uintmax_t;
};
}
#endif

View File

@ -38,7 +38,7 @@ SOFTWARE.
///\ingroup utilities
#define ETL_VERSION_MAJOR 14
#define ETL_VERSION_MINOR 9
#define ETL_VERSION_MINOR 10
#define ETL_VERSION_PATCH 0
#define ETL_VERSION ETL_STRINGIFY(ETL_VERSION_MAJOR) ETL_STRINGIFY(ETL_VERSION_MINOR) ETL_STRINGIFY(ETL_VERSION_PATCH)

View File

@ -1,3 +1,8 @@
===============================================================================
14.10.0
Added ETL_NOEXCEPT macros.
Added std::forward support to alternate STL utility header.
===============================================================================
14.9.0
Added constexpr constructors to string_view and array_view.