Skip to content

Commit 48c17ca

Browse files
author
Jayesh Krishna
committed
Removing C99 _Bool
Replacing _Bool (C99) with bool
1 parent 6d62da2 commit 48c17ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clib/pioc_support.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,7 @@ void piodie(const char *fname, int line, const char *fmt, ...)
887887
* @param fname name of code file where error occured
888888
* @param line the line of code where the error occurred.
889889
*/
890-
void pioassert(_Bool expression, const char *msg, const char *fname, int line)
890+
void pioassert(bool expression, const char *msg, const char *fname, int line)
891891
{
892892
#ifndef NDEBUG
893893
if (!expression)

0 commit comments

Comments
 (0)