| arma_version.hpp | | arma_version.hpp | |
| | | | |
| skipping to change at line 18 | | skipping to change at line 18 | |
| // Lesser General Public License (LGPL) as published | | // Lesser General Public License (LGPL) as published | |
| // by the Free Software Foundation, either version 3 | | // by the Free Software Foundation, either version 3 | |
| // of the License or (at your option) any later version. | | // of the License or (at your option) any later version. | |
| // (see http://www.opensource.org/licenses for more info) | | // (see http://www.opensource.org/licenses for more info) | |
| | | | |
| //! \addtogroup arma_version | | //! \addtogroup arma_version | |
| //! @{ | | //! @{ | |
| | | | |
| #define ARMA_VERSION_MAJOR 2 | | #define ARMA_VERSION_MAJOR 2 | |
| #define ARMA_VERSION_MINOR 4 | | #define ARMA_VERSION_MINOR 4 | |
|
| #define ARMA_VERSION_PATCH 5 | | #define ARMA_VERSION_PATCH 6 | |
| #define ARMA_VERSION_NAME "Loco Lounge Lizard" | | #define ARMA_VERSION_NAME "Loco Lounge Lizard" | |
| | | | |
| struct arma_version | | struct arma_version | |
| { | | { | |
| static const unsigned int major = ARMA_VERSION_MAJOR; | | static const unsigned int major = ARMA_VERSION_MAJOR; | |
| static const unsigned int minor = ARMA_VERSION_MINOR; | | static const unsigned int minor = ARMA_VERSION_MINOR; | |
| static const unsigned int patch = ARMA_VERSION_PATCH; | | static const unsigned int patch = ARMA_VERSION_PATCH; | |
| | | | |
| static | | static | |
| inline | | inline | |
| | | | |
End of changes. 1 change blocks. |
| 1 lines changed or deleted | | 1 lines changed or added | |
|
| debug.hpp | | debug.hpp | |
| | | | |
| skipping to change at line 969 | | skipping to change at line 969 | |
| #else | | #else | |
| | | | |
| #undef ARMA_EXTRA_DEBUG | | #undef ARMA_EXTRA_DEBUG | |
| | | | |
| #define arma_debug_print true ? (void)0 : arma_print | | #define arma_debug_print true ? (void)0 : arma_print | |
| #define arma_debug_warn true ? (void)0 : arma_warn | | #define arma_debug_warn true ? (void)0 : arma_warn | |
| #define arma_debug_check true ? (void)0 : arma_check | | #define arma_debug_check true ? (void)0 : arma_check | |
| #define arma_debug_set_error true ? (void)0 : arma_set_error | | #define arma_debug_set_error true ? (void)0 : arma_set_error | |
| #define arma_debug_assert_same_size true ? (void)0 : arma_assert_same_s
ize | | #define arma_debug_assert_same_size true ? (void)0 : arma_assert_same_s
ize | |
| #define arma_debug_assert_mul_size true ? (void)0 : arma_assert_mul_si
ze | | #define arma_debug_assert_mul_size true ? (void)0 : arma_assert_mul_si
ze | |
|
| #define arma_debug_assert_cube_as_mat true ? (void)0 : arma_debug_assert_
cube_as_mat | | #define arma_debug_assert_cube_as_mat true ? (void)0 : arma_assert_cube_a
s_mat | |
| | | | |
| #endif | | #endif | |
| | | | |
| #if defined(ARMA_EXTRA_DEBUG) | | #if defined(ARMA_EXTRA_DEBUG) | |
| | | | |
| #define arma_extra_debug_sigprint arma_sigprint(ARMA_FNSIG); arma_b
ktprint | | #define arma_extra_debug_sigprint arma_sigprint(ARMA_FNSIG); arma_b
ktprint | |
| #define arma_extra_debug_sigprint_this arma_sigprint(ARMA_FNSIG); arma_t
hisprint | | #define arma_extra_debug_sigprint_this arma_sigprint(ARMA_FNSIG); arma_t
hisprint | |
| #define arma_extra_debug_print arma_print | | #define arma_extra_debug_print arma_print | |
| #define arma_extra_debug_warn arma_warn | | #define arma_extra_debug_warn arma_warn | |
| #define arma_extra_debug_check arma_check | | #define arma_extra_debug_check arma_check | |
| | | | |
End of changes. 1 change blocks. |
| 1 lines changed or deleted | | 1 lines changed or added | |
|