You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
403 B
403 B
This error is reported in C++. It fires when the initialization of a static
variable A
, accesses a static variable B
from another translation unit
(usually another .cpp
file). There are no guarantees whether B
has been
already initialized or not at that point.
For more technical definition and techniques to avoid/remediate, see the FAQ.