Merge branch 'sqlite' of gitlab.com:zvon/tv_rename_cpp into sqlite

This commit is contained in:
zvon 2020-01-15 10:04:30 +01:00
commit e50c3317a2

View File

@ -79,11 +79,11 @@ public:
private:
#ifndef _WIN32
DIR *d;
const struct dirent *current_entry;
DIR *d{};
const struct dirent *current_entry{};
#else
HANDLE hFind;
WIN32_FIND_DATA data;
HANDLE hFind{};
WIN32_FIND_DATA data{};
bool ended{ false };
#endif
};