VirtualBox

儲存庫 vbox 的更動 62892


忽略:
時間撮記:
2016-8-3 上午08:46:35 (8 年 以前)
作者:
vboxsync
訊息:

Runtime: deal with nested template classes when showing the 'short' function/method name in strformatrt.c, it produced garbled/truncated method names before

檔案:
修改 1 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/Runtime/common/string/strformatrt.cpp

    r62564 r62892  
    710710                        const char *pszStart;
    711711                        const char *psz = pszStart = va_arg(*pArgs, const char *);
     712                        int cAngle = 0;
     713
    712714                        if (!VALID_PTR(psz))
    713715                            return pfnOutput(pvArgOutput, RT_STR_TUPLE("<null>"));
     
    720722                                while ((ch = *psz) != '\0' && (RT_C_IS_BLANK(ch) || ch == '('))
    721723                                    psz++;
    722                                 if (ch)
     724                                if (ch && cAngle == 0)
    723725                                    pszStart = psz;
    724726                            }
    725727                            else if (ch == '(')
    726728                                break;
     729                            else if (ch == '<')
     730                            {
     731                                cAngle++;
     732                                psz++;
     733                            }
     734                            else if (ch == '>')
     735                            {
     736                                cAngle--;
     737                                psz++;
     738                            }
    727739                            else
    728740                                psz++;
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette