Skip to content

Commit 21f6598

Browse files
committed
processexecutor.cpp: fixed bugprone-unintended-char-ostream-output clang-tidy warning
1 parent 5d936c0 commit 21f6598

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cli/processexecutor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ namespace {
154154
void writeToPipe(PipeSignal type, const std::string &data) const
155155
{
156156
if (mDebug)
157-
std::cout << "writeToPipe - " << type << " - " << data << std::endl;
157+
std::cout << "writeToPipe - " << static_cast<unsigned int>(type) << " - " << data << std::endl;
158158

159159
{
160160
const auto t = static_cast<char>(type);

0 commit comments

Comments
 (0)