Apply clang-format

This commit is contained in:
Martchus 2018-10-06 16:18:53 +02:00
parent 929c817c08
commit 8e32fc0229
2 changed files with 2 additions and 2 deletions

View File

@ -227,7 +227,8 @@ WideStringData convertMultiByteToWide(const char *inputBuffer, int inputBufferSi
*/
WideStringData convertMultiByteToWide(const std::string &inputBuffer)
{
return convertMultiByteToWide(inputBuffer.data(), inputBuffer.size() < (numeric_limits<int>::max() - 1) ? static_cast<int>(inputBuffer.size() + 1) : -1);
return convertMultiByteToWide(
inputBuffer.data(), inputBuffer.size() < (numeric_limits<int>::max() - 1) ? static_cast<int>(inputBuffer.size() + 1) : -1);
}
#endif

View File

@ -480,7 +480,6 @@ void ArgumentParserTests::testCallbacks()
parser.parseArgs(4, argv2);
}
#ifndef PLATFORM_WINDOWS
/*!
* \brief Used to check whether the exit() function is called when printing bash completion.