Spaces:
Running
Running
ggml-cpu : remove stdlib include from repack.cpp (ggml/1276)
Browse filesThis commit removes the inclusion of `<cstdlib>`.
The motivation for this change is that this source file does not seem to
use any functions from this header and the comment about `qsort` is a
little misleading/confusing.
ggml/src/ggml-cpu/repack.cpp
CHANGED
|
@@ -14,7 +14,6 @@
|
|
| 14 |
#include <cmath>
|
| 15 |
#include <cstring>
|
| 16 |
#include <cassert>
|
| 17 |
-
#include <cstdlib> // for qsort
|
| 18 |
#include <cstdio> // for GGML_ASSERT
|
| 19 |
|
| 20 |
#include "repack.h"
|
|
|
|
| 14 |
#include <cmath>
|
| 15 |
#include <cstring>
|
| 16 |
#include <cassert>
|
|
|
|
| 17 |
#include <cstdio> // for GGML_ASSERT
|
| 18 |
|
| 19 |
#include "repack.h"
|