We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
bugprone-unintended-char-ostream-output
1 parent 5d936c0 commit 21f6598Copy full SHA for 21f6598
1 file changed
cli/processexecutor.cpp
@@ -154,7 +154,7 @@ namespace {
154
void writeToPipe(PipeSignal type, const std::string &data) const
155
{
156
if (mDebug)
157
- std::cout << "writeToPipe - " << type << " - " << data << std::endl;
+ std::cout << "writeToPipe - " << static_cast<unsigned int>(type) << " - " << data << std::endl;
158
159
160
const auto t = static_cast<char>(type);
0 commit comments