From 199e875210435cbc914e80bf3eb6be6c985fce1c Mon Sep 17 00:00:00 2001
From: Nat Goodspeed <nat@lindenlab.com>
Date: Mon, 23 Jan 2012 17:04:18 -0500
Subject: [PATCH] Use LLProcess::Params::args::empty() instead of comparing
 iterators.

---
 indra/newview/llexternaleditor.cpp | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/indra/newview/llexternaleditor.cpp b/indra/newview/llexternaleditor.cpp
index 561b87618c8..db482f023e5 100644
--- a/indra/newview/llexternaleditor.cpp
+++ b/indra/newview/llexternaleditor.cpp
@@ -81,10 +81,7 @@ LLExternalEditor::EErrorCode LLExternalEditor::setCommand(const std::string& env
 
 LLExternalEditor::EErrorCode LLExternalEditor::run(const std::string& file_path)
 {
-	// LLInitParams type wrappers don't seem to have empty() or size()
-	// methods; try determining emptiness by comparing begin/end iterators.
-	if (std::string(mProcessParams.executable).empty() ||
-	    (mProcessParams.args.begin() == mProcessParams.args.end()))
+	if (std::string(mProcessParams.executable).empty() || mProcessParams.args.empty())
 	{
 		llwarns << "Editor command not set" << llendl;
 		return EC_NOT_SPECIFIED;
-- 
GitLab