diff options
author | 이형주/Common Platform Lab(SR)/삼성전자 <leee.lee@samsung.com> | 2022-02-24 13:41:19 +0900 |
---|---|---|
committer | GitHub Enterprise <noreply-CODE@samsung.com> | 2022-02-24 13:41:19 +0900 |
commit | ce69ffb191f73626c5b5a87f72c919349e925d3a (patch) | |
tree | 957eb464152b3fe28aa985d3cba3624e36f305c5 /src/tools | |
parent | c9d19a35b19cfc708ed61eaaec470052baa79c57 (diff) | |
download | coreclr-tizen.tar.gz coreclr-tizen.tar.bz2 coreclr-tizen.zip |
[Tizen] build fix for clang-10 (#331)submit/tizen/20220224.044249tizen
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/metainfo/mdinfo.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tools/metainfo/mdinfo.cpp b/src/tools/metainfo/mdinfo.cpp index 5458a76d28..a716189b8d 100644 --- a/src/tools/metainfo/mdinfo.cpp +++ b/src/tools/metainfo/mdinfo.cpp @@ -1948,11 +1948,11 @@ void MDInfo::DisplayCustomAttributeInfo(mdCustomAttribute inValue, const char *p VWrite(" :: %S", qSigName.Ptr()); // Keep track of coff overhead. - if (!wcscmp(W("__DecoratedName"), rcName)) - { - bCoffSymbol = true; - g_cbCoffNames += cbValue + 6; - } + if (!wcscmp(W("__DecoratedName"), rcName)) + { + bCoffSymbol = true; + g_cbCoffNames += cbValue + 6; + } WriteLine(""); VWriteLine("%s\tLength: %ld", preFix, cbValue); |