mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-04 03:40:14 +00:00
SearchVisitor copy a new std::string everytime CellsStore::search is
called. Use a reference instead
This commit is contained in:
parent
3b8b0b5dd7
commit
93ffdc915d
@ -382,10 +382,10 @@ namespace MWWorld
|
||||
struct SearchVisitor
|
||||
{
|
||||
PtrType mFound;
|
||||
std::string mIdToFind;
|
||||
const std::string *mIdToFind;
|
||||
bool operator()(const PtrType& ptr)
|
||||
{
|
||||
if (ptr.getCellRef().getRefId() == mIdToFind)
|
||||
if (ptr.getCellRef().getRefId() == *mIdToFind)
|
||||
{
|
||||
mFound = ptr;
|
||||
return false;
|
||||
@ -397,7 +397,7 @@ namespace MWWorld
|
||||
Ptr CellStore::search (const std::string& id)
|
||||
{
|
||||
SearchVisitor<MWWorld::Ptr> searchVisitor;
|
||||
searchVisitor.mIdToFind = id;
|
||||
searchVisitor.mIdToFind = &id;
|
||||
forEach(searchVisitor);
|
||||
return searchVisitor.mFound;
|
||||
}
|
||||
@ -405,7 +405,7 @@ namespace MWWorld
|
||||
ConstPtr CellStore::searchConst (const std::string& id) const
|
||||
{
|
||||
SearchVisitor<MWWorld::ConstPtr> searchVisitor;
|
||||
searchVisitor.mIdToFind = id;
|
||||
searchVisitor.mIdToFind = &id;
|
||||
forEachConst(searchVisitor);
|
||||
return searchVisitor.mFound;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user