We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce5cacd commit 4e6be4cCopy full SHA for 4e6be4c
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