mirror of
https://github.com/minetest/minetest.git
synced 2025-07-07 02:10:22 +02:00
DB::loadBlock copy removal & DB backend cleanup
* Remove the copy from db::loadBlock by using a pointer to the destination * cleanup db backend, the child backend doesn't have to set their functions as virtual
This commit is contained in:
@ -30,13 +30,16 @@ bool Database_Dummy::saveBlock(const v3s16 &pos, const std::string &data)
|
||||
return true;
|
||||
}
|
||||
|
||||
std::string Database_Dummy::loadBlock(const v3s16 &pos)
|
||||
void Database_Dummy::loadBlock(const v3s16 &pos, std::string *block)
|
||||
{
|
||||
s64 i = getBlockAsInteger(pos);
|
||||
std::map<s64, std::string>::iterator it = m_database.find(i);
|
||||
if (it == m_database.end())
|
||||
return "";
|
||||
return it->second;
|
||||
if (it == m_database.end()) {
|
||||
*block = "";
|
||||
return;
|
||||
}
|
||||
|
||||
*block = it->second;
|
||||
}
|
||||
|
||||
bool Database_Dummy::deleteBlock(const v3s16 &pos)
|
||||
|
Reference in New Issue
Block a user