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
The function Noelle::getLoopStructures() and its overloads currently return a std::vector<...>*. The correct return type should not a pointer type but std::vector<...> as this is often times source of memory leak on the user side.
The text was updated successfully, but these errors were encountered:
The function
Noelle::getLoopStructures()
and its overloads currently return astd::vector<...>*
. The correct return type should not a pointer type butstd::vector<...>
as this is often times source of memory leak on the user side.The text was updated successfully, but these errors were encountered: