Reorganize source and add libraries

This commit is contained in:
Cameron Gutman
2018-05-05 17:25:55 -07:00
parent 6adb3f0f45
commit 63b6da601a
104 changed files with 39023 additions and 52 deletions
+4
View File
@@ -0,0 +1,4 @@
#pragma once
#define THROW_BAD_ALLOC_IF_NULL(x) \
if ((x) == nullptr) throw new std::bad_alloc()