diff options
| author | 2014-09-28 11:30:29 -0400 | |
|---|---|---|
| committer | 2014-09-28 11:44:14 -0400 | |
| commit | ca2f0de08abaffea419e674274113b27acdf6ece (patch) | |
| tree | 30bcdb7a6178ec37b97eac7929b8e92c0e9b0a1b /src/common/file_util.h | |
| parent | Merge pull request #118 from lioncash/chunk-file (diff) | |
| download | yuzu-ca2f0de08abaffea419e674274113b27acdf6ece.tar.gz yuzu-ca2f0de08abaffea419e674274113b27acdf6ece.tar.xz yuzu-ca2f0de08abaffea419e674274113b27acdf6ece.zip | |
Fix warnings in core and common
Diffstat (limited to 'src/common/file_util.h')
| -rw-r--r-- | src/common/file_util.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/file_util.h b/src/common/file_util.h index cddcd1951..f9d91972f 100644 --- a/src/common/file_util.h +++ b/src/common/file_util.h | |||
| @@ -6,9 +6,9 @@ | |||
| 6 | 6 | ||
| 7 | #include <fstream> | 7 | #include <fstream> |
| 8 | #include <cstdio> | 8 | #include <cstdio> |
| 9 | #include <cstring> | ||
| 9 | #include <string> | 10 | #include <string> |
| 10 | #include <vector> | 11 | #include <vector> |
| 11 | #include <string.h> | ||
| 12 | 12 | ||
| 13 | #include "common/common.h" | 13 | #include "common/common.h" |
| 14 | #include "common/string_util.h" | 14 | #include "common/string_util.h" |
| @@ -128,8 +128,8 @@ std::string GetBundleDirectory(); | |||
| 128 | std::string &GetExeDirectory(); | 128 | std::string &GetExeDirectory(); |
| 129 | #endif | 129 | #endif |
| 130 | 130 | ||
| 131 | bool WriteStringToFile(bool text_file, const std::string &str, const char *filename); | 131 | size_t WriteStringToFile(bool text_file, const std::string &str, const char *filename); |
| 132 | bool ReadFileToString(bool text_file, const char *filename, std::string &str); | 132 | size_t ReadFileToString(bool text_file, const char *filename, std::string &str); |
| 133 | 133 | ||
| 134 | // simple wrapper for cstdlib file functions to | 134 | // simple wrapper for cstdlib file functions to |
| 135 | // hopefully will make error checking easier | 135 | // hopefully will make error checking easier |