Remove extra {} in declaration

This commit is contained in:
Sébastien Rombauts 2022-07-24 18:28:25 +02:00
parent cd24b93bba
commit 7d8b69e797

View File

@ -707,7 +707,7 @@ private:
bool mbDone{false}; //!< true when the last executeStep() had no more row to fetch
/// Map of columns index by name (mutable so getColumnIndex can be const)
mutable std::map<std::string, int> mColumnNames{};
mutable std::map<std::string, int> mColumnNames;
};