Skip to content

Commit

Permalink
Clarify bool types
Browse files Browse the repository at this point in the history
  • Loading branch information
goulart-paul committed Jul 19, 2018
1 parent a6370d3 commit 1252c65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1252c65

Please sign in to comment.