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
For this, the definition of FILE would need to change. A proposed solution is to typedef it to void *, while having it actually be a unique_ptr<abstract_file> underneath. This would allow us to switch a mem_file out for a fd_file when freopening a mem_file-based stream.
For this, the definition of
FILE
would need to change. A proposed solution is to typedef it tovoid *
, while having it actually be aunique_ptr<abstract_file>
underneath. This would allow us to switch amem_file
out for afd_file
whenfreopen
ing amem_file
-based stream.Broken out from #837.
The text was updated successfully, but these errors were encountered: