mirror of
https://github.com/ETLCPP/etl.git
synced 2026-05-01 03:19:10 +08:00
Added missing header include.
This commit is contained in:
parent
ad29aaff10
commit
76bb902034
@ -37,7 +37,6 @@ SOFTWARE.
|
||||
#include "exception.h"
|
||||
#include "hash.h"
|
||||
#include "parameter_type.h"
|
||||
|
||||
#include "algorithm.h"
|
||||
|
||||
///\defgroup array array
|
||||
|
||||
@ -31,6 +31,7 @@
|
||||
|
||||
#include "platform.h"
|
||||
#include "atomic.h"
|
||||
#include "exception.h"
|
||||
#include "error_handler.h"
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
// Hint files help the Visual Studio IDE interpret Visual C++ identifiers
|
||||
// such as names of functions and macros.
|
||||
// For more information see https://go.microsoft.com/fwlink/?linkid=865984
|
||||
#define ETL_CONSTANT
|
||||
#define ETL_CONSTEXPR
|
||||
#define ETL_CONSTEXPR14
|
||||
#define ETL_CONSTEXPR17
|
||||
@ -21,16 +22,6 @@
|
||||
#define ETL_CPP11_SUPPORTED
|
||||
#define ETL_CPP14_SUPPORTED
|
||||
#define ETL_CPP17_SUPPORTED
|
||||
#define TEST
|
||||
#define CHECK
|
||||
#define CHECK_EQUAL
|
||||
#define CHECK_THROW
|
||||
#define ETL_ASSERT(b, e)
|
||||
#define ETL_ASSERT(b, e) {if (!(b)) {etl::error_handler::error((e)); throw((e));}}
|
||||
#define ETL_ASSERT(b, e) {if (!(b)) {throw((e));}}
|
||||
#define ETL_ASSERT(b, e) {if(!(b)) {etl::error_handler::error((e));}}
|
||||
#define ETL_ASSERT(b, e) assert((b))
|
||||
#define ETL_ASSERT
|
||||
#define ETL_NULLPTR
|
||||
#define ETL_NODISCARD [[nodiscard]]
|
||||
#define ETL_NODISCARD
|
||||
#define ETL_CONSTANT
|
||||
#define ETL_USING_STLPORT
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user