std:: prefixes for CacheBase/Disk/Memory

This commit is contained in:
FeRD (Frank Dana)
2019-08-04 22:34:24 -04:00
parent 0b6f9ff5bd
commit b6b832fb81
6 changed files with 55 additions and 55 deletions

View File

@@ -58,7 +58,7 @@ Json::Value CacheBase::JsonValue() {
// Create root json object
Json::Value root;
stringstream max_bytes_stream;
std::stringstream max_bytes_stream;
max_bytes_stream << max_bytes;
root["max_bytes"] = max_bytes_stream.str();