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 hash map of ride history is just a pointer (Rcpp::XPtr) to a std::unordered_map. So if a user attempts to save the Eddington class using save() or saveRDS(), they will be disappointed when reloading data since the pointer will be nil and the data will be lost.
This means that in current-state, several functions will not work as intended when attempting to manipulate the same object between sessions. Some will error silently (like the update() method) and others will raise an error (like attempting to access the H active field).
The text was updated successfully, but these errors were encountered:
The hash map of ride history is just a pointer (
Rcpp::XPtr
) to astd::unordered_map
. So if a user attempts to save theEddington
class usingsave()
orsaveRDS()
, they will be disappointed when reloading data since the pointer will benil
and the data will be lost.This means that in current-state, several functions will not work as intended when attempting to manipulate the same object between sessions. Some will error silently (like the
update()
method) and others will raise an error (like attempting to access theH
active field).The text was updated successfully, but these errors were encountered: