From c130c3e67566591a4f0d5391b54af3882b576f8d Mon Sep 17 00:00:00 2001 From: Andrew Rogers Date: Wed, 19 Feb 2025 16:22:03 -0800 Subject: [PATCH] DLLExport json::Value --- llvm/include/llvm/Support/JSON.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/Support/JSON.h b/llvm/include/llvm/Support/JSON.h index 14a5c7142ed8c..1499e8f26c30e 100644 --- a/llvm/include/llvm/Support/JSON.h +++ b/llvm/include/llvm/Support/JSON.h @@ -285,7 +285,7 @@ inline bool operator!=(const Array &L, const Array &R) { return !(L == R); } /// And parsed: /// Expected E = json::parse("[1, 2, null]"); /// assert(E && E->kind() == Value::Array); -class Value { +class LLVM_ABI Value { public: enum Kind { Null,