Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWhiteBlackGoose <wbg@angouri.org>2021-05-13 02:32:36 +0300
committerGitHub <noreply@github.com>2021-05-13 02:32:36 +0300
commitf7805ce0909e2f3a075b968a23eb6c96e7040ad0 (patch)
tree7e8bcdc9f9d18cd0a99654a07e7efd9949e3fa30 /src/coreclr/jit/host.h
parent82c917aa6119c553c4fa093265c52f34476e7e13 (diff)
Replacing `BOOL` with `bool` (#52585)
* Replaces all BOOL to bool in RyuJIT Replaced all Windows' BOOL to bool in RyuJIT except for WIN API related cases. Fix #48317 * Replaced `TRUE` and `FALSE` constants Replaced `TRUE` with `true` and `FALSE` with `false` constants in RyuJIT except Windows-specific cases. * A couple of BOOLs replaced to bool * Format issue fixed Formatting patch applied according to the instruction.
Diffstat (limited to 'src/coreclr/jit/host.h')
-rw-r--r--src/coreclr/jit/host.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coreclr/jit/host.h b/src/coreclr/jit/host.h
index ea9abdddcc9..bf699a3c777 100644
--- a/src/coreclr/jit/host.h
+++ b/src/coreclr/jit/host.h
@@ -25,7 +25,7 @@ public:
Compiler* const compiler;
};
-BOOL vlogf(unsigned level, const char* fmt, va_list args);
+bool vlogf(unsigned level, const char* fmt, va_list args);
int vflogf(FILE* file, const char* fmt, va_list args);
int logf(const char* fmt, ...);