llama_cpp 0.12.3 → 0.12.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -19,6 +19,7 @@ extern "C" {
19
19
  // fall back to the _Static_assert C11 keyword.
20
20
  // if C99 - static_assert is noop
21
21
  // ref: https://stackoverflow.com/a/53923785/4039976
22
+ #ifndef __cplusplus
22
23
  #ifndef static_assert
23
24
  #if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201100L)
24
25
  #define static_assert(cond, msg) _Static_assert(cond, msg)
@@ -26,6 +27,7 @@ extern "C" {
26
27
  #define static_assert(cond, msg) struct global_scope_noop_trick
27
28
  #endif
28
29
  #endif
30
+ #endif
29
31
 
30
32
  // __FMA__ and __F16C__ are not defined in MSVC, however they are implied with AVX2/AVX512
31
33
  #if defined(_MSC_VER) && (defined(__AVX2__) || defined(__AVX512F__))