├── .gitignore ├── CMakeLists.txt ├── CMakeSettings.json ├── readme.md ├── stackalloc.cpp ├── stackalloc.h └── test.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | out 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/stackalloc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/stackalloc/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/stackalloc/HEAD/readme.md -------------------------------------------------------------------------------- /stackalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/stackalloc/HEAD/stackalloc.cpp -------------------------------------------------------------------------------- /stackalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/stackalloc/HEAD/stackalloc.h -------------------------------------------------------------------------------- /test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aardappel/stackalloc/HEAD/test.cpp --------------------------------------------------------------------------------