You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As can be seen here, stateDerivativePartials_ is only defined when BUILD_WITH_ESTIMATION_TOOLS has been defined. However, it is used here unconditionally. This breaks the compilation when switching BUILD_WITH_ESTIMATION_TOOLS off.
A simple #ifdef around the call site should fix it—see PR.
The text was updated successfully, but these errors were encountered:
As can be seen here,
stateDerivativePartials_
is only defined whenBUILD_WITH_ESTIMATION_TOOLS
has been defined. However, it is used here unconditionally. This breaks the compilation when switchingBUILD_WITH_ESTIMATION_TOOLS
off.A simple
#ifdef
around the call site should fix it—see PR.The text was updated successfully, but these errors were encountered: