mirror of
https://github.com/quitesimpleorg/qsmaddy.git
synced 2024-12-18 01:32:37 +01:00
appveyor - use debug
This commit is contained in:
parent
c5c37a7627
commit
3484198ade
@ -12,4 +12,4 @@ build:
|
|||||||
project: $(APPVEYOR_BUILD_FOLDER)\tmp\$(APPVEYOR_PROJECT_NAME).sln
|
project: $(APPVEYOR_BUILD_FOLDER)\tmp\$(APPVEYOR_PROJECT_NAME).sln
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
- cmd: ctest -VV -C "Release"
|
- cmd: ctest -VV -C "Debug"
|
||||||
|
@ -157,24 +157,26 @@ protected:
|
|||||||
{
|
{
|
||||||
bool hasMetNonSpace = false;
|
bool hasMetNonSpace = false;
|
||||||
|
|
||||||
uint32_t indentation = std::count_if(
|
uint32_t indentation = static_cast<uint32_t>(
|
||||||
line.begin(),
|
std::count_if(
|
||||||
line.end(),
|
line.begin(),
|
||||||
[&hasMetNonSpace](unsigned char c)
|
line.end(),
|
||||||
{
|
[&hasMetNonSpace](unsigned char c)
|
||||||
if (hasMetNonSpace)
|
|
||||||
{
|
{
|
||||||
|
if (hasMetNonSpace)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (std::isspace(c))
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
hasMetNonSpace = true;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
)
|
||||||
if (std::isspace(c))
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
hasMetNonSpace = true;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
);
|
);
|
||||||
|
|
||||||
return indentation;
|
return indentation;
|
||||||
|
Loading…
Reference in New Issue
Block a user