Skip to content

Commit

Permalink
Merge pull request #598 from E3SM-Project/jayeshkrishna/rm_c99_bool
Browse files Browse the repository at this point in the history
Replacing _Bool (C99) with bool
  • Loading branch information
jayeshkrishna authored Jul 17, 2024
2 parents 6d62da2 + 48c17ca commit b5393ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clib/pioc_support.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,7 @@ void piodie(const char *fname, int line, const char *fmt, ...)
* @param fname name of code file where error occured
* @param line the line of code where the error occurred.
*/
void pioassert(_Bool expression, const char *msg, const char *fname, int line)
void pioassert(bool expression, const char *msg, const char *fname, int line)
{
#ifndef NDEBUG
if (!expression)
Expand Down

0 comments on commit b5393ec

Please sign in to comment.