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
Currently no access-*.yaml file is created for the c++ binding.
The cause is that the binding is not leading to the File API close method being called. In python, the API would be accessed via "with" which would call the appropriate "exit" method. The C++ binding doesn't currently do this. Hence, either the "pybind11" equivalent of "with" needs investigating, or call the close method directly from the destructor.
The latter will be the approach taken.
The text was updated successfully, but these errors were encountered:
Currently no access-*.yaml file is created for the c++ binding.
The cause is that the binding is not leading to the File API close method being called. In python, the API would be accessed via "with" which would call the appropriate "exit" method. The C++ binding doesn't currently do this. Hence, either the "pybind11" equivalent of "with" needs investigating, or call the close method directly from the destructor.
The latter will be the approach taken.
The text was updated successfully, but these errors were encountered: