comparison include/library/library.h @ 404:e561b7542b7b

*: fix build on mac os x
author Paper <paper@tflc.us>
date Mon, 19 Jan 2026 20:50:40 -0500
parents 963047512d34
children
comparison
equal deleted inserted replaced
403:df4a027623d0 404:e561b7542b7b
30 std::unordered_map<int, std::unordered_map<int, std::filesystem::path>> items; 30 std::unordered_map<int, std::unordered_map<int, std::filesystem::path>> items;
31 31
32 private: 32 private:
33 void Refresh(std::optional<int> find_id); 33 void Refresh(std::optional<int> find_id);
34 34
35 std::unordered_map<std::filesystem::path, std::unique_ptr<Filesystem::IWatcher>> watchers_; 35 Filesystem::PathMap<std::unique_ptr<Filesystem::IWatcher>> watchers_;
36 36
37 /* ID we're looking for */ 37 /* ID we're looking for */
38 std::optional<int> find_id_; 38 std::optional<int> find_id_;
39 }; 39 };
40 40