Skip to content

Commit

Permalink
from list to vector in paths
Browse files Browse the repository at this point in the history
  • Loading branch information
xtofalex committed Mar 18, 2024
1 parent a13e769 commit 6218ca6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/VerilogConstructor.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class VerilogConstructor {
public:
VerilogConstructor() = default;
~VerilogConstructor();
using Paths = std::list<std::filesystem::path>;
using Paths = std::vector<std::filesystem::path>;
void parse(const Paths& paths);
void parse(const std::filesystem::path& path);

Expand Down

0 comments on commit 6218ca6

Please sign in to comment.