aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Ginger Bill 2015-11-18 11:16:48 +0000
committerGravatar Ginger Bill 2015-11-18 11:16:48 +0000
commite262e3df140d269c70a22da4dfe2050d0a343f0e (patch)
tree405abb9ccde48fe33ae5e6af598b681790220d53
parentTypo fixes (diff)
Fix Another Typo causing unresolved external symbol
Diffstat (limited to '')
-rw-r--r--README.md2
-rw-r--r--gb.hpp5
2 files changed, 4 insertions, 3 deletions
diff --git a/README.md b/README.md
index 5ebf5b9..91e0818 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ gb single-file public domain libraries for C & C++
library | latest version | category | languages | description
----------------|----------------|----------|-----------|-------------
**gb_string.h** | 0.93 | strings | C, C++ | A better string library for C & C++
-**gb.hpp** | 0.21b | misc | C++11 | (Experimental) A C++11 helper library without STL geared towards game development
+**gb.hpp** | 0.21c | misc | C++11 | (Experimental) A C++11 helper library without STL geared towards game development
**gb_math.hpp** | 0.02b | math | C++11 | A C++11 math library geared towards game development
**gb_ini.h** | 0.91 | misc | C, C++ | A simple ini file loader library for C & C++
diff --git a/gb.hpp b/gb.hpp
index 65ede0d..1be1be6 100644
--- a/gb.hpp
+++ b/gb.hpp
@@ -1,8 +1,9 @@
-// gb.hpp - v0.21b - public domain C++11 helper library - no warranty implied; use at your own risk
+// gb.hpp - v0.21c - public domain C++11 helper library - no warranty implied; use at your own risk
// (Experimental) A C++11 helper library without STL geared towards game development
/*
Version History:
+ 0.21c - Fix Another Typo causing unresolved external symbol
0.21b - Typo fixes
0.21a - Better `static` keywords
0.21 - Separate Math Library
@@ -1324,7 +1325,7 @@ make(Allocator* allocator, usize count)
template <typename T>
inline void
-dealloc(Array<T>* a)
+free(Array<T>* a)
{
if (a->allocator)
dealloc(a->allocator, a->data);