From 1252c65bdebb5218422c3a4402d21150c0b13011 Mon Sep 17 00:00:00 2001 From: Paul Goulart Date: Thu, 19 Jul 2018 13:02:21 +0100 Subject: [PATCH] Clarify bool types --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ef03cf..19e3863 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ QDLDL uses its own internal types for integers, floats and booleans (`QDLDL_int, - `DFLOAT` (default false): uses float numbers instead of doubles - `DLONG` (default true): uses long integers for indexing (for large matrices) -Note that the `QDLDL_bool` type is defined as the standard `bool` type for C standards >= C99. Before the `bool` type was not defined and for earlier standards QDLDL sets `QDLDL_bool = QDLDL_int`. +Note that the `QDLDL_bool` type is defined as the standard `_Bool` type for C standards >= C99. In earlier C standards the `_Bool` type was not defined and QDLDL sets `QDLDL_bool = QDLDL_int`. ## Linking QDLDL