diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 59995be53e..83eef38755 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -7,7 +7,6 @@ #include #include #include -#include #include #include #include @@ -334,7 +333,7 @@ void cmMakefile::PrintCommandTrace(const cmListFileFunction& lff) const Json::StreamWriterBuilder builder; builder["indentation"] = ""; val["file"] = full_path; - val["line"] = static_cast(lff.Line); + val["line"] = static_cast(lff.Line); val["cmd"] = lff.Name.Original; val["args"] = Json::Value(Json::arrayValue); for (std::string const& arg : args) { @@ -342,7 +341,7 @@ void cmMakefile::PrintCommandTrace(const cmListFileFunction& lff) const } val["time"] = cmSystemTools::GetTime(); val["frame"] = - static_cast(this->ExecutionStatusStack.size()); + static_cast(this->ExecutionStatusStack.size()); msg << Json::writeString(builder, val); #endif break;