From 2a16b53aaf4b38f5e63ce69c96df65b24e26b82b Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Tue, 23 Dec 2025 09:39:34 +0100 Subject: wip: cppfront: Implementing C++ part of the frontend. Signed-off-by: Amlal El Mahrouss --- include/CompilerKit/AE.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'include/CompilerKit/AE.h') diff --git a/include/CompilerKit/AE.h b/include/CompilerKit/AE.h index 211f596..a8fe0a7 100644 --- a/include/CompilerKit/AE.h +++ b/include/CompilerKit/AE.h @@ -106,7 +106,7 @@ class AEReadableProtocol final { NECTAR_COPY_DELETE(AEReadableProtocol) /** - * @brief Read AE Record headers. + * @brief Reads the AE Record headers. * * @param raw the containing buffer * @param sz it's size (1 = one AERecordHeader, 2 two AERecordHeader(s)) @@ -114,7 +114,6 @@ class AEReadableProtocol final { */ AERecordHeaderPtr Read(char* raw, std::size_t sz) { if (!raw) return nullptr; - return this->Read_(raw, sz * sizeof(AERecordHeader)); } -- cgit v1.2.3