- Touched up documentation for Math library
- finished matrix implementation - added custom assert implementation
This commit is contained in:
@@ -21,8 +21,6 @@
|
||||
|
||||
using assert_handler = void (*)(const char *, const char *, int , const char *);
|
||||
|
||||
extern void set_assert_handler(assert_handler handler);
|
||||
|
||||
extern void __assert_impl(const char* expression, const char* file, int line, const char* function);
|
||||
#define assert(expression) if(not(expression)) { __assert_impl(#expression, __FILE__, __LINE__, __PRETTY_FUNCTION__); }
|
||||
|
||||
|
||||
@@ -131,7 +131,6 @@ namespace fennec
|
||||
// fennec::type_transform ==============================================================================================
|
||||
|
||||
///
|
||||
/// \struct fennec::type_transform
|
||||
/// \brief Base Class for Type Transformations
|
||||
///
|
||||
/// \details resembles a transformation from one type to T, the result is stored in the member type_transform::type
|
||||
@@ -139,7 +138,6 @@ namespace fennec
|
||||
template<typename T> struct type_transform {
|
||||
|
||||
///
|
||||
/// \typedef type_transform::type
|
||||
/// \brief the type to transform into
|
||||
using type = T;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user