ref: a24fd5e1204c793e23785402569350bea7e53a9f
parent: 09f0254d5ed62a28cdb019a8726bf4a7bc03ce2e
author: Martin Storsjö <martin@martin.st>
date: Thu Jan 23 13:58:26 EST 2014
Make the bool_t typedef in the processing lib match the others There is no specific reason to use int32_t for this type.
--- a/codec/processing/src/common/typedef.h
+++ b/codec/processing/src/common/typedef.h
@@ -75,7 +75,7 @@
#endif
typedef char str_t ; // [comment]: specific use plain char only for character parameters
-typedef int32_t bool_t ;
+typedef bool bool_t ;
#if defined(_WIN32) || defined(_MACH_PLATFORM) || defined(__GNUC__)
typedef float float_t ;