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
Right now, our PImpl approach relies on using raw pointers, but we probably ought to use std::unique_ptr instead. This would indeed eliminate manual memory management, provide automatic cleanup, and improve exception safety.
Right now, our PImpl approach relies on using raw pointers, but we probably ought to use
std::unique_ptrinstead. This would indeed eliminate manual memory management, provide automatic cleanup, and improve exception safety.