File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ namespace mlx
16
16
static void * AlignedRealloc (void * ptr, std::size_t alignment, std::size_t size);
17
17
static void Free (void * ptr);
18
18
19
- inline static bool IsInit () noexcept { return s_instance != nullptr ; }
20
- inline static MemManager& Get () noexcept { return *s_instance; }
19
+ static inline bool IsInit () noexcept { return s_instance != nullptr ; }
20
+ static inline MemManager& Get () noexcept { return *s_instance; }
21
21
22
22
~MemManager ();
23
23
Original file line number Diff line number Diff line change 8
8
#include < cstdio>
9
9
#include < cstdarg>
10
10
#include < iostream>
11
+ #include < cstddef>
12
+ #include < cstdint>
13
+ #include < cstdlib>
14
+ #include < cstring>
11
15
12
16
#include < vulkan/vulkan.h>
13
17
29
33
#include < chrono>
30
34
#include < unordered_set>
31
35
#include < array>
32
- #include < cstdint>
33
- #include < cstring>
34
36
#include < optional>
35
37
#include < set>
36
- #include < cstddef>
37
- #include < cstdlib>
38
38
#include < random>
39
39
#include < concepts>
40
40
#include < algorithm>
You can’t perform that action at this time.
0 commit comments