QueryVarVal vv(VAR_VAL_SCHEMA, variable, sc, sc->getId());
我想步入的是外面这个函数vv(),但是实际调试的时候它步入的是后面的函数sc->getId()
vv()
sc->getId()
闭关修行中......
If no additional breakpoints are added:
s # enter sc->getId() finish # exit sc->getId() s # enter vv()
Execution order issue. vv
b vv continue
Use the call command to call a function, or try jumping
If no additional breakpoints are added:
Execution order issue.
will be entered after executing sc->getId()vv
b vv
continue
Use the call command to call a function, or try jumping