Use more filesystem::path where applicable

This commit is contained in:
Alexander Bock
2024-04-06 19:50:39 +02:00
parent 2af06fb641
commit 4328476d26
148 changed files with 712 additions and 705 deletions

View File

@@ -253,8 +253,11 @@ public:
* \param documentationEntries The DocumentationEntry%s that are used to recursively
* test the ghoul::Dictionary that is contained inside. If this list is empty,
* only a type check is performed
* \param nEntries The exact number of entries that should be in the table. If the
* value is not provided, any number (including 0) is allowed
*/
TableVerifier(std::vector<DocumentationEntry> documentationEntries = {});
TableVerifier(std::vector<DocumentationEntry> documentationEntries = {},
std::optional<int> nEntries = std::nullopt);
/**
* Checks whether the \p key%'s value is a table (= ghoul::Dictionary) and (if
@@ -277,6 +280,7 @@ public:
/// The documentations passed in the constructor
std::vector<DocumentationEntry> documentations;
std::optional<int> count;
};
/**