summaryrefslogtreecommitdiff
path: root/src/filecache.cpp
diff options
context:
space:
mode:
authorLoic Blot <loic.blot@unix-experience.fr>2017-08-18 07:44:42 +0200
committerLoic Blot <loic.blot@unix-experience.fr>2017-08-18 07:44:52 +0200
commit55ab4264dc3f42a4588de0cf52e8f0f88e4fd90e (patch)
treea7b06056f0905327351131de60678f41a1283826 /src/filecache.cpp
parent13e995b811e80dc48c0769274d3dca3a2221b843 (diff)
downloadminetest-55ab4264dc3f42a4588de0cf52e8f0f88e4fd90e.tar.gz
minetest-55ab4264dc3f42a4588de0cf52e8f0f88e4fd90e.tar.bz2
minetest-55ab4264dc3f42a4588de0cf52e8f0f88e4fd90e.zip
Modernize various files
* range-based for loops * emplace_back instead of push_back * code style * C++ headers instead of C headers * Default operators * empty stl function
Diffstat (limited to 'src/filecache.cpp')
-rw-r--r--src/filecache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filecache.cpp b/src/filecache.cpp
index f1694d8d5..3d1b302a8 100644
--- a/src/filecache.cpp
+++ b/src/filecache.cpp
@@ -26,7 +26,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include <string>
#include <iostream>
#include <fstream>
-#include <stdlib.h>
+#include <cstdlib>
bool FileCache::loadByPath(const std::string &path, std::ostream &os)
{