From: Igor Kulaychuk Date: Mon, 10 Jul 2017 21:12:10 +0000 (+0300) Subject: Rename System.Decimal to decimal X-Git-Tag: submit/tizen/20180620.071641~233 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1b42dbd6df3f1ee555b7f35f814d79b92f690b25;p=sdk%2Ftools%2Fnetcoredbg.git Rename System.Decimal to decimal --- diff --git a/src/debug/debugger/typeprinter.cpp b/src/debug/debugger/typeprinter.cpp index c8dbdfb..fecc11b 100644 --- a/src/debug/debugger/typeprinter.cpp +++ b/src/debug/debugger/typeprinter.cpp @@ -252,7 +252,10 @@ HRESULT TypePrinter::GetTypeOfValue(ICorDebugType *pType, std::string &elementTy { char cName[mdNameLen] = {0}; WideCharToMultiByte(CP_UTF8, 0, g_mdName, (int)(_wcslen(g_mdName) + 1), cName, _countof(cName), NULL, NULL); - ss << cName; + if (strcmp(cName, "System.Decimal") == 0) + ss << "decimal"; + else + ss << cName; } }