Skip to content

Commit

Permalink
throwing assertion causes trouble for parser, so it's removed
Browse files Browse the repository at this point in the history
  • Loading branch information
mxgrey committed Jun 23, 2015
1 parent e9896b2 commit 771dfa8
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions dart/common/detail/NameManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -242,13 +242,7 @@ T NameManager<T>::getObject(const std::string& _name) const
if (result != mMap.end())
return result->second;
else
{
dterr << "[NameManager::getObject] (" << mManagerName
<< ") Could not find an object with the name [" << _name << "]\n";
assert(false);

return nullptr;
}
}

//==============================================================================
Expand Down

0 comments on commit 771dfa8

Please sign in to comment.