- [FIX] Conversió explícita de std::filesystem::path a std::string per a que no es queixe Windows
This commit is contained in:
2
main.cpp
2
main.cpp
@@ -379,7 +379,7 @@ void process_includes(int index, std::string& file, bool is_cpp = false)
|
|||||||
|
|
||||||
void process_cpp(std::string& file)
|
void process_cpp(std::string& file)
|
||||||
{
|
{
|
||||||
std::string absolute_path = std::filesystem::weakly_canonical(file);
|
std::string absolute_path = std::filesystem::weakly_canonical(file).string();
|
||||||
//std::cout << absolute_path << std::endl;
|
//std::cout << absolute_path << std::endl;
|
||||||
int index = add_cpp(absolute_path);
|
int index = add_cpp(absolute_path);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user