We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 981fff7 commit c69fdc9Copy full SHA for c69fdc9
deps/v8/src/torque/contextual.h
@@ -50,11 +50,11 @@ class ContextualVariable {
50
}
51
52
private:
53
- static thread_local VarType* top_;
+ static VarType* top_;
54
};
55
56
template <class Derived, class VarType>
57
-thread_local VarType* ContextualVariable<Derived, VarType>::top_ = nullptr;
+VarType* ContextualVariable<Derived, VarType>::top_ = nullptr;
58
59
// Usage: DECLARE_CONTEXTUAL_VARIABLE(VarName, VarType)
60
#define DECLARE_CONTEXTUAL_VARIABLE(VarName, ...) \
0 commit comments