mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-12 13:17:56 -05:00
Fix warnings in core and common
This commit is contained in:
@ -6,9 +6,9 @@
|
||||
|
||||
#include <fstream>
|
||||
#include <cstdio>
|
||||
#include <cstring>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <string.h>
|
||||
|
||||
#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
|
||||
|
Reference in New Issue
Block a user