Changed GSL.assert macros to functions

This commit is contained in:
Corbin Hughes 2015-09-27 23:28:18 -05:00
parent 62226021a8
commit 901a6b8119

View File

@ -20,6 +20,7 @@
#define GSL_GSL_H #define GSL_GSL_H
#include "array_view.h" // array_view, strided_array_view... #include "array_view.h" // array_view, strided_array_view...
#include "fail_fast.h" // fail_fast_assert
#include "string_view.h" // zstring, string_view, zstring_builder... #include "string_view.h" // zstring, string_view, zstring_builder...
#include <memory> #include <memory>
@ -38,8 +39,8 @@ using owner = T;
// //
// GSL.assert: assertions // GSL.assert: assertions
// //
#define Expects(x) Guide::fail_fast_assert((x)) inline void Expects(bool cond) { Guide::fail_fast_assert(cond); }
#define Ensures(x) Guide::fail_fast_assert((x)) inline void Ensures(bool cond) { Guide::fail_fast_assert(cond); }
// //
// GSL.util: utilities // GSL.util: utilities