Skip to content

Commit b5393ec

Browse files
Merge pull request #598 from E3SM-Project/jayeshkrishna/rm_c99_bool
Replacing _Bool (C99) with bool
2 parents 6d62da2 + 48c17ca commit b5393ec

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)