From ca2f0de08abaffea419e674274113b27acdf6ece Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 28 Sep 2014 11:30:29 -0400 Subject: Fix warnings in core and common --- src/common/file_util.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/common/file_util.h') diff --git a/src/common/file_util.h b/src/common/file_util.h index cddcd195..f9d91972 100644 --- a/src/common/file_util.h +++ b/src/common/file_util.h @@ -6,9 +6,9 @@ #include #include +#include #include #include -#include #include "common/common.h" #include "common/string_util.h" @@ -128,8 +128,8 @@ std::string GetBundleDirectory(); std::string &GetExeDirectory(); #endif -bool WriteStringToFile(bool text_file, const std::string &str, const char *filename); -bool ReadFileToString(bool text_file, const char *filename, std::string &str); +size_t WriteStringToFile(bool text_file, const std::string &str, const char *filename); +size_t ReadFileToString(bool text_file, const char *filename, std::string &str); // simple wrapper for cstdlib file functions to // hopefully will make error checking easier -- cgit v1.2.3