diff options
author | Jeremy Koritzinsky <jkoritzinsky@gmail.com> | 2018-10-31 17:56:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-31 17:56:38 -0700 |
commit | bd5cc690bca0c798952b14b989ad1bf8e8f00011 (patch) | |
tree | 5c5a39659f20dabafa194a9d07134d54cd07b666 /src/jit | |
parent | 8aa5101cea45183e882326f465007909d1b862a0 (diff) | |
download | coreclr-bd5cc690bca0c798952b14b989ad1bf8e8f00011.tar.gz coreclr-bd5cc690bca0c798952b14b989ad1bf8e8f00011.tar.bz2 coreclr-bd5cc690bca0c798952b14b989ad1bf8e8f00011.zip |
Clean up string literal implicit const casting and some two-phase lookup nits on Windows (#20730)
* Remove implicit c-string const casting and clean up some C++ standards conformance bugs.
* Fix const string conversion in FCSigCheck.
Diffstat (limited to 'src/jit')
-rw-r--r-- | src/jit/unwind.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/unwind.h b/src/jit/unwind.h index c74ee2d1f3..a78df32f1f 100644 --- a/src/jit/unwind.h +++ b/src/jit/unwind.h @@ -95,7 +95,7 @@ protected: return uwiComp->dspOffset(o); } - static char* dspBool(bool b) + static const char* dspBool(bool b) { return (b) ? "true" : "false"; } |