diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-07-31 00:32:56 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-07-31 00:32:56 +0100 |
| commit | 215425527dcbba9beff6ee2b2d862edb2cf2e7e9 (patch) | |
| tree | 0318d26712b02b6ebe356ba1776ccd529ff7b2cf /dev/CompilerKit/AE.h | |
| parent | d4805939698b1eea2475d22acd3d485a87306436 (diff) | |
feat: fix contact email in `BasicString.cc`
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/CompilerKit/AE.h')
| -rw-r--r-- | dev/CompilerKit/AE.h | 4 |
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); } }; |
