diff options
author | Loic Blot <loic.blot@unix-experience.fr> | 2017-08-18 07:44:42 +0200 |
---|---|---|
committer | Loic Blot <loic.blot@unix-experience.fr> | 2017-08-18 07:44:52 +0200 |
commit | 55ab4264dc3f42a4588de0cf52e8f0f88e4fd90e (patch) | |
tree | a7b06056f0905327351131de60678f41a1283826 /src/guiTable.cpp | |
parent | 13e995b811e80dc48c0769274d3dca3a2221b843 (diff) | |
download | minetest-55ab4264dc3f42a4588de0cf52e8f0f88e4fd90e.tar.xz |
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/guiTable.cpp')
-rw-r--r-- | src/guiTable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/guiTable.cpp b/src/guiTable.cpp index 9354eef3d..ab6de9435 100644 --- a/src/guiTable.cpp +++ b/src/guiTable.cpp @@ -22,7 +22,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include <queue> #include <sstream> #include <utility> -#include <string.h> +#include <cstring> #include <IGUISkin.h> #include <IGUIFont.h> #include <IGUIScrollBar.h> |