Skip to content

Commit 4e6be4c

Browse files
psmarshallMylesBorins
authored andcommitted
deps: remove thread_local to fix V8 compilation
PR-URL: #21668 Fixes: https://github.com/I Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: Myles Borins <[email protected]>
1 parent ce5cacd commit 4e6be4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deps/v8/src/torque/contextual.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ class ContextualVariable {
5050
}
5151

5252
private:
53-
static thread_local VarType* top_;
53+
static VarType* top_;
5454
};
5555

5656
template <class Derived, class VarType>
57-
thread_local VarType* ContextualVariable<Derived, VarType>::top_ = nullptr;
57+
VarType* ContextualVariable<Derived, VarType>::top_ = nullptr;
5858

5959
// Usage: DECLARE_CONTEXTUAL_VARIABLE(VarName, VarType)
6060
#define DECLARE_CONTEXTUAL_VARIABLE(VarName, ...) \

0 commit comments

Comments
 (0)