diff options
author | Cameron Hall <camthesaxman@users.noreply.github.com> | 2017-01-26 01:15:49 -0500 |
---|---|---|
committer | YamaArashi <YamaArashi@users.noreply.github.com> | 2017-01-25 22:15:49 -0800 |
commit | 72bc8f23d37c6efd68ad4a0f86ba87b6cd3db4d2 (patch) | |
tree | f62d6ddef7d869640cd483f98af1a7f7198989de /tools/scaninc/c_file.h | |
parent | 448acff16e53485c5cfb90983a7a1e1b4644c30b (diff) |
make scaninc build under GCC (#218)
Diffstat (limited to 'tools/scaninc/c_file.h')
-rw-r--r-- | tools/scaninc/c_file.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/scaninc/c_file.h b/tools/scaninc/c_file.h index fcd327d28..2503acac1 100644 --- a/tools/scaninc/c_file.h +++ b/tools/scaninc/c_file.h @@ -42,11 +42,11 @@ private: std::string m_path; std::set<std::string> m_incbins; - void CFile::RemoveComments(); + void RemoveComments(); bool ConsumeHorizontalWhitespace(); bool ConsumeNewline(); void SkipWhitespace(); - std::unique_ptr<unsigned char[]> CFile::ReadWholeFile(const std::string& path, int& size); + std::unique_ptr<unsigned char[]> ReadWholeFile(const std::string& path, int& size); bool CheckIdentifier(const std::string& ident); void CheckIncbin(); }; |