Change some size() > 0 to Based on patches by kuranes and Markus. Refs #1852, #1923.

This was SVN commit r13413.
This commit is contained in:
leper
2013-05-21 22:11:47 +00:00
parent 013fc9558a
commit 3f00d4d997
6 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ void CDebuggingServer::GetAllCallstacks(std::stringstream& response)
std::stringstream stream;
uint nbrCallstacksWritten = 0;
std::list<CThreadDebugger*>::iterator itr;
if (m_ThreadDebuggers.size() > 0)
if (!m_ThreadDebuggers.empty())
{
response << "[";
for (itr = m_ThreadDebuggers.begin(); itr != m_ThreadDebuggers.end(); itr++)