forked from pool/nodejs-electron
16 lines
901 B
Diff
16 lines
901 B
Diff
|
|
In file included from ../../third_party/blink/renderer/platform/bindings/bigint.cc:7:
|
|||
|
|
../../third_party/blink/renderer/platform/bindings/exception_state.h:136:37: error: ‘constexpr’ static data member ‘kEmptyContext’ must have an initializer
|
|||
|
|
136 | static constexpr ExceptionContext kEmptyContext;
|
|||
|
|
|
|||
|
|
--- src/third_party/blink/renderer/platform/bindings/exception_state.h.orig 2025-04-16 14:36:33.017070028 +0200
|
|||
|
|
+++ src/third_party/blink/renderer/platform/bindings/exception_state.h 2025-04-16 20:05:07.925331205 +0200
|
|||
|
|
@@ -133,7 +133,7 @@ class PLATFORM_EXPORT ExceptionState {
|
|||
|
|
// Delegated constructor for DummyExceptionStateForTesting
|
|||
|
|
explicit ExceptionState(DummyExceptionStateForTesting& dummy_derived);
|
|||
|
|
|
|||
|
|
- static constexpr ExceptionContext kEmptyContext;
|
|||
|
|
+ static constexpr ExceptionContext kEmptyContext{};
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
void SetExceptionInfo(ExceptionCode, const String&);
|