summaryrefslogtreecommitdiffhomepage
path: root/include/CompilerKit/AE.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-09 03:07:48 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-09 03:07:48 +0100
commit0c54fbd1a74242c568749b7293f2f319c4842d44 (patch)
tree86cdac041fc0a0f4e17d839d48e5ff7cea3cc5a7 /include/CompilerKit/AE.h
parentcfa04915a4c7d77996b49279b5891d1402f439a5 (diff)
chore: codebase chore and API breaking changes.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/CompilerKit/AE.h')
-rw-r--r--include/CompilerKit/AE.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/CompilerKit/AE.h b/include/CompilerKit/AE.h
index cf6e71b..c1c6ed9 100644
--- a/include/CompilerKit/AE.h
+++ b/include/CompilerKit/AE.h
@@ -97,13 +97,13 @@ namespace CompilerKit::Utils {
*/
class AEReadableProtocol final {
public:
- std::ifstream file_pointer_;
+ std::ifstream fFilePtr;
public:
explicit AEReadableProtocol() = default;
~AEReadableProtocol() = default;
- NECTI_COPY_DELETE(AEReadableProtocol);
+ NECTI_COPY_DELETE(AEReadableProtocol)
/**
* @brief Read AE Record headers.
@@ -129,7 +129,7 @@ class AEReadableProtocol final {
*/
template <typename TypeClass>
TypeClass* Read_(char* raw, std::size_t sz) {
- file_pointer_.read(raw, std::streamsize(sz));
+ fFilePtr.read(raw, std::streamsize(sz));
return reinterpret_cast<TypeClass*>(raw);
}
};