diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-22 15:39:40 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-22 15:39:40 +0200 |
| commit | 209373b1f5770dc175e06996a152df6484f59af2 (patch) | |
| tree | 93801515752e81a7ce9e5de91bf625d03bb9b4fa /dev/CompilerKit/UUID.h | |
| parent | a7b7a7d499578660be897313b30a13963cc9ffd5 (diff) | |
feat: implement `CompilerKitDylibTraits` container for future and
current frontend
tools.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/CompilerKit/UUID.h')
| -rw-r--r-- | dev/CompilerKit/UUID.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/CompilerKit/UUID.h b/dev/CompilerKit/UUID.h index d54eec7..39db276 100644 --- a/dev/CompilerKit/UUID.h +++ b/dev/CompilerKit/UUID.h @@ -172,7 +172,7 @@ namespace Detail { process_byte(static_cast<unsigned char>((bitCount >> 24) & 0xFF)); process_byte(static_cast<unsigned char>((bitCount >> 16) & 0xFF)); process_byte(static_cast<unsigned char>((bitCount >> 8) & 0xFF)); - process_byte(static_cast<unsigned char>((bitCount) & 0xFF)); + process_byte(static_cast<unsigned char>((bitCount) &0xFF)); memcpy(digest, m_digest, 5 * sizeof(uint32_t)); return digest; |
