Subject | Hash | Author | Date (UTC) |
---|---|---|---|
make free deprecated | a68c1b809ddc5c2a0018142a8435c67b8e4e0cf6 | Your Name | 2019-11-26 22:13:26 |
new template data structure jl::array as static c-array wrapper | 68ff5a4049985d4ed013d0976b32e0613bb11ff0 | jp.larry | 2019-11-25 20:16:39 |
jassert release macro was wrong | 97964f5cf3485502675b77b4df5b322921355cf7 | jp.larry | 2019-11-25 20:15:13 |
darray insert functions without checking for resize | 0a168f4fc057f697bec6ad1f90faaaa7977c9537 | Your Name | 2019-11-25 08:39:45 |
replaced free with jl::deallocate | 1d25f7cfe0a36ce04eeb8a6a08dc9f9eefe5c2df | Your Name | 2019-11-25 07:28:42 |
jabort_release and jassert_release macros | 71349de13d880a9a13eb7cca9c46d460c30705b2 | Your Name | 2019-11-25 07:00:50 |
endianness convertion function | fbff0fbb13891f7ad2975e226476cf0b56eabb36 | Your Name | 2019-11-25 06:06:17 |
overwise -> otherwise | 89d07c9f30aba52e50526b0ecf1ed6eddb791764 | Your Name | 2019-11-25 06:01:13 |
init function was incorrect | 6c820a36720b41b2efbfcf101bd12eb43f69a91d | Your Name | 2019-11-25 05:59:05 |
time struct for time measurements | d6e362c72596c97abbd7c6f87c25eca1d3127c46 | Your Name | 2019-11-25 05:58:50 |
jassert macro, assert alternative | e5b46d371c19ec6608c861c8b93a9963f117ec6d | Your Name | 2019-11-25 05:43:03 |
typo | 14b869ada95c37bcc75a549cdcedae1b0b2ba76d | Your Name | 2019-11-25 03:27:12 |
thread pool cleanup | 0b783f47cd02fb118f299784b52209e259646b25 | Your Name | 2019-11-25 03:23:02 |
removed nodiscard for optional function | 3ba7da3a20d2ef5e8bc70d1ff14b9db973bba0dd | Your Name | 2019-11-25 03:22:13 |
rarray allocation fix | e192f65d453e4e858bc0c034b5b431591175886d | Your Name | 2019-11-25 03:20:49 |
new darray function | 41ed65d9c71ba226572b451f487ac381bdcb382d | Your Name | 2019-11-25 03:20:26 |
threads wrapper and thread pool moved to jlib | e902ab04f388b331f7b0201a01591c52c0fb44a5 | Your Name | 2019-11-25 02:11:05 |
sharray implementation | 84f563f018049700a9aaa3d9b915cd8e60010d6a | Your Name | 2019-11-25 02:10:39 |
removed excess cmake variable | 5391e7b7eb08e7aef83e7b3783c3eb405b701f99 | Your Name | 2019-11-25 02:09:41 |
max and min functions | 9aee2d76ffc74c9ff5e9b10591b4b5a77de8a859 | Your Name | 2019-11-25 02:09:16 |
File | Lines added | Lines deleted |
---|---|---|
include/jlib/allocate.h | 6 | 0 |
File include/jlib/allocate.h changed (mode: 100644) (index 618e4c6..0c2ba95) | |||
... | ... | namespace jl | |
89 | 89 | } | } |
90 | 90 | } | } |
91 | 91 | #undef aligned_alloc | #undef aligned_alloc |
92 | |||
93 | #ifndef JLIB_NOT_DEPRECATE_FREE | ||
94 | [[deprecated]] inline void free_(void*p){ ::free(p); }; | ||
95 | #define free(x) free_(x) | ||
96 | #endif | ||
97 |