瀏覽代碼

llama-mmap: fix missing include (#11796)

Technically the fixed width types come only from iostream and
cstdint/stdint.h headers. memory and vector headers should not provide
these. In GCC 15 the headers are cleaned up and you require the proper
header cstdint.

src/llama-mmap.h:26:5: error: ‘uint32_t’ does not name a type
   26 |     uint32_t read_u32() const;
      |     ^~~~~~~~
Wilken Gottwalt 11 月之前
父節點
當前提交
19b392d58d
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/llama-mmap.h

+ 1 - 0
src/llama-mmap.h

@@ -1,5 +1,6 @@
 #pragma once
 
+#include <cstdint>
 #include <memory>
 #include <vector>