Mercurial > minori
view include/library/library.h @ 227:c4f03f83b252
library: do explicit conversion from fs::path to std::string
this fixes compiler errors on Windows.
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Mon, 08 Jan 2024 21:30:18 -0500 |
parents | 84e0a3c4737a |
children | 862d0d8619f6 |
line wrap: on
line source
#ifndef __library__library_h #define __library__library_h #include "library/library.h" #include <unordered_map> #include <string> namespace Library { // int = anime id, map = episode, paths extern std::unordered_map<int, std::unordered_map<int, std::string>> library; void SearchLibraryFolders(); } #endif // __library__library_h