Skip to content

Commit

Permalink
Minor tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
kingcrimsontianyu committed Feb 1, 2025
1 parent aff902f commit bfdf3fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/include/kvikio/file_handle.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ class CUFileHandleWrapper {
class FileHandle {
private:
// We use two file descriptors, one opened with the O_DIRECT flag and one without.
FileWrapper _fd_direct_on;
FileWrapper _fd_direct_off;
FileWrapper _fd_direct_on{};
FileWrapper _fd_direct_off{};
bool _initialized{false};
CompatMode _compat_mode_requested{CompatMode::AUTO};
bool _is_compat_mode_preferred{true};
Expand Down

0 comments on commit bfdf3fe

Please sign in to comment.