From 30f966db3f4b01f06c0f43d98d24095de66af7b4 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Fri, 2 Sep 2016 12:08:30 -0600 Subject: Switched from the NULL macro to 0, it's c++! --- build.sh | 0 src/font.h | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 build.sh diff --git a/build.sh b/build.sh old mode 100644 new mode 100755 diff --git a/src/font.h b/src/font.h index 802de9d..b3cf864 100644 --- a/src/font.h +++ b/src/font.h @@ -16,7 +16,7 @@ public: { public: Glyph() : - pData( NULL ) + pData( 0 ) { } ~Glyph() { delete[] pData; } -- cgit v1.2.3