aboutsummaryrefslogtreecommitdiffstats
path: root/gb.hpp
diff options
context:
space:
mode:
authorGravatar Ginger Bill 2015-11-18 09:53:00 +0000
committerGravatar Ginger Bill 2015-11-18 09:53:00 +0000
commitef2665e8bdd371518c78139bed58f2dd9de9166a (patch)
tree1b7bfc2b5689e64f14d8556be67e6c2bf6312769 /gb.hpp
parentBetter `static` keywords (diff)
Typo fixes
Diffstat (limited to 'gb.hpp')
-rw-r--r--gb.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/gb.hpp b/gb.hpp
index 2130d38..65ede0d 100644
--- a/gb.hpp
+++ b/gb.hpp
@@ -1,8 +1,9 @@
-// gb.hpp - v0.21a - public domain C++11 helper library - no warranty implied; use at your own risk
+// gb.hpp - v0.21b - 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.21b - Typo fixes
0.21a - Better `static` keywords
0.21 - Separate Math Library
0.20a - #ifndef for many macros
@@ -38,7 +39,7 @@ WARNING
- This also means that many functions are not documented.
- This library is not compatible with STL at all! (By design)
-Context:
+CONTENTS:
- Common Macros
- Assert
- Types
@@ -373,7 +374,7 @@ __GB_NAMESPACE_START
// NOTE(bill): (std::)size_t is not used not because it's a bad concept but on
// the platforms that I will be using:
- // sizeof(size_t) == sizeof(usize) == sizeof(s64)
+ // sizeof(size_t) == sizeof(usize) == sizeof(ssize)
// NOTE(bill): This also allows for a signed version of size_t which is similar
// to ptrdiff_t
// NOTE(bill): If (u)intptr is a better fit, please use that.