Personal all-purpose utility library
Go to file
Doyle Thai a4bc798a6f Remove inline for now
I found in another project that using inline, inlined some functions in the
output object code. When using single file build, the implementation is defined
in one file and if it becomes inlined, then the function name is lost.

If then another file references the library and tries to use a function that has
been inlined, the linker won't be able to resolve the function name and the
object code since it has been inlined. So I've removed it from the library until
I find a case where it's suitable to use.
2017-04-19 18:10:00 +10:00
misc Add darray remove operations 2017-04-11 19:00:55 +10:00
.clang-format Initial commit 2017-04-09 15:08:31 +10:00
.gitignore Initial commit 2017-04-09 15:08:31 +10:00
build.bat Switch darray implementation to C++ with templates 2017-04-11 21:05:40 +10:00
dqn_unit_test.cpp Add better push buffer system for dynamic alloc 2017-04-18 23:38:52 +10:00
dqn.h Remove inline for now 2017-04-19 18:10:00 +10:00