summaryrefslogtreecommitdiffhomepage
path: root/dev/CompilerKit/AE.h
diff options
context:
space:
mode:
Diffstat (limited to 'dev/CompilerKit/AE.h')
-rw-r--r--dev/CompilerKit/AE.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/CompilerKit/AE.h b/dev/CompilerKit/AE.h
index 3194417..1115e0a 100644
--- a/dev/CompilerKit/AE.h
+++ b/dev/CompilerKit/AE.h
@@ -91,7 +91,7 @@ namespace CompilerKit::Utils {
*/
class AEReadableProtocol final {
public:
- std::ifstream _Fp;
+ std::ifstream file_pointer_;
public:
explicit AEReadableProtocol() = default;
@@ -123,7 +123,7 @@ class AEReadableProtocol final {
*/
template <typename TypeClass>
TypeClass* Read_(char* raw, std::size_t sz) {
- _Fp.read(raw, std::streamsize(sz));
+ file_pointer_.read(raw, std::streamsize(sz));
return reinterpret_cast<TypeClass*>(raw);
}
};