Add some std namespaces to get tests building.
I guess a rogue header had previously been using the std namespace.
This commit is contained in:
@@ -85,7 +85,7 @@ namespace persistent_data {
|
||||
if (search_start_ >= ms->second)
|
||||
continue;
|
||||
|
||||
for (block_address b = max(search_start_, ms->first); b < ms->second; b++) {
|
||||
for (block_address b = std::max(search_start_, ms->first); b < ms->second; b++) {
|
||||
if (b >= counts_.size())
|
||||
throw std::runtime_error("block out of bounds");
|
||||
|
||||
|
Reference in New Issue
Block a user