1
0
鏡像自 https://github.com/quitesimpleorg/qsmaddy.git 已同步 2025-06-26 21:22:05 +02:00

appveyor - use debug

此提交包含在:
M. Petra Baranski
2019-02-19 02:43:09 +01:00
父節點 c5c37a7627
當前提交 3484198ade
共有 2 個檔案被更改,包括 18 行新增16 行删除

查看文件

@ -157,24 +157,26 @@ protected:
{
bool hasMetNonSpace = false;
uint32_t indentation = std::count_if(
line.begin(),
line.end(),
[&hasMetNonSpace](unsigned char c)
{
if (hasMetNonSpace)
uint32_t indentation = static_cast<uint32_t>(
std::count_if(
line.begin(),
line.end(),
[&hasMetNonSpace](unsigned char c)
{
if (hasMetNonSpace)
{
return false;
}
if (std::isspace(c))
{
return true;
}
hasMetNonSpace = true;
return false;
}
if (std::isspace(c))
{
return true;
}
hasMetNonSpace = true;
return false;
}
)
);
return indentation;