1
0
scáthán de https://github.com/quitesimpleorg/qsmaddy.git sioncronaithe 2025-01-18 21:51:26 +01:00

appveyor - use debug

Tá an tiomantas seo le fáil i:
M. Petra Baranski 2019-02-19 02:43:09 +01:00
tuismitheoir c5c37a7627
tiomantas 3484198ade
D'athraigh 2 comhad le 18 breiseanna agus 16 scriosta

Féach ar an gComhad

@ -12,4 +12,4 @@ build:
project: $(APPVEYOR_BUILD_FOLDER)\tmp\$(APPVEYOR_PROJECT_NAME).sln
test_script:
- cmd: ctest -VV -C "Release"
- cmd: ctest -VV -C "Debug"

Féach ar an gComhad

@ -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;