satya-das / cppparser

A library to parse C/C++ source as AST
Other
278 stars 36 forks source link

boost/filesystem can be replaced by std::filesystem #3

Closed asmwarrior closed 2 years ago

asmwarrior commented 3 years ago

I see in the front page, you use the boost::filesystem, can you just use std::filesystem?

It looks like it's already support by standard c++ library, thus we can avoid the boost library dependency?

satya-das commented 3 years ago

Nice suggestion. I will do that.

UnrealKaraulov commented 3 years ago

@satya-das you can remove boost completely from project forever? or only filesystem ?

satya-das commented 2 years ago

An attempt to replace boost::filesystem with std::filesystem (commit 4e26764044) resulted into complications on Linux as linking failed. The commit is now reverted and the plan to use std::filesystem is postponed. Closing this ticket.