Fix double std::endl

This commit is contained in:
Drake Arconis
2016-01-17 08:11:54 -05:00
parent 6e73b33b91
commit 0fe3a2623a

View File

@@ -624,7 +624,7 @@ LLSD LLFloaterReporter::gatherReport()
std::ostringstream details;
details << "V" << LLVersionInfo::getVersion() << std::endl << std::endl; // client version moved to body of email for abuse reports
details << "V" << LLVersionInfo::getVersion() << std::endl; // client version moved to body of email for abuse reports
std::string object_name = getChild<LLUICtrl>("object_name")->getValue().asString();
if (!object_name.empty() && !mOwnerName.empty())