From 215425527dcbba9beff6ee2b2d862edb2cf2e7e9 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Thu, 31 Jul 2025 00:32:56 +0100 Subject: feat: fix contact email in `BasicString.cc` Signed-off-by: Amlal El Mahrouss --- dev/CompilerKit/AE.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dev/CompilerKit/AE.h') 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 TypeClass* Read_(char* raw, std::size_t sz) { - _Fp.read(raw, std::streamsize(sz)); + file_pointer_.read(raw, std::streamsize(sz)); return reinterpret_cast(raw); } }; -- cgit v1.2.3