diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-01-23 14:06:07 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-01-23 14:06:07 +0100 |
commit | 87ec27cf3c5a70a0d12244c847c4a8befaa7a8e2 (patch) | |
tree | ead668e5ed59c7cab91e4e54885ab61459de7947 /include | |
parent | 99f79a4e5c3abbe91a03216824e7659051872054 (diff) |
Remove unneeded classbase inheritance from FileReader
Diffstat (limited to 'include')
-rw-r--r-- | include/fileutils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fileutils.h b/include/fileutils.h index 45865bbb0..89f92f97f 100644 --- a/include/fileutils.h +++ b/include/fileutils.h @@ -20,7 +20,7 @@ #pragma once /** Provides an easy method of reading a text file into memory. */ -class CoreExport FileReader : public classbase +class CoreExport FileReader { /** The lines of text in the file. */ std::vector<std::string> lines; |