From d504fbd37ee65da69e014ab080c9740fea82efe6 Mon Sep 17 00:00:00 2001 From: Brian Cox Date: Sat, 13 Oct 2018 21:07:13 -0700 Subject: [PATCH] Tweak so it still builds w/ -std=c++98 --- src/core/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/types.h b/src/core/types.h index e2135df..80ac7a6 100644 --- a/src/core/types.h +++ b/src/core/types.h @@ -45,7 +45,7 @@ // standard TSS types //----------------------------------------------------------------------------- #if __cplusplus < 201103L -typedef unsigned char uint8_t +typedef unsigned char uint8_t; #endif typedef signed char int8;