diff --git a/lib/errorlogger.cpp b/lib/errorlogger.cpp index caade477b..75e255a79 100644 --- a/lib/errorlogger.cpp +++ b/lib/errorlogger.cpp @@ -401,6 +401,7 @@ std::string ErrorLogger::ErrorMessage::toXML() const printer.PushAttribute("file0", Path::toNativeSeparators(file0).c_str()); printer.PushAttribute("file", (*it).getfile().c_str()); printer.PushAttribute("line", std::max((*it).line,0)); + printer.PushAttribute("column", (*it).col); if (!it->getinfo().empty()) printer.PushAttribute("info", fixInvalidChars(it->getinfo()).c_str()); printer.CloseElement(false);