mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 18:16:48 -04:00
ChangeLogs: https://github.com/google/jsonnet/releases/tag/v0.19.0 https://github.com/google/jsonnet/releases/tag/v0.19.1 https://github.com/google/jsonnet/releases/tag/v0.20.0 PR: 274397 Reported by: timp87@gmail.com Approved by: gasol.wu@gmail.com (maintainer)
22 lines
566 B
C++
22 lines
566 B
C++
--- core/vm.cpp.orig 2023-04-17 19:02:16 UTC
|
|
+++ core/vm.cpp
|
|
@@ -23,7 +23,7 @@ limitations under the License.
|
|
|
|
#include "desugarer.h"
|
|
#include "json.h"
|
|
-#include "json.hpp"
|
|
+#include "nlohmann/json.hpp"
|
|
#include "md5.h"
|
|
#include "parser.h"
|
|
#include "ryml_std.hpp" // include this before any other ryml header
|
|
@@ -1710,6 +1710,10 @@ class Interpreter {
|
|
} break;
|
|
|
|
case json::value_t::discarded: {
|
|
+ abort();
|
|
+ }
|
|
+
|
|
+ case json::value_t::binary: {
|
|
abort();
|
|
}
|
|
}
|