boost::optional<std::vector<std::wstring>> filePath;
If I have the above boost optional vector is it possible to then pass this by reference and as an optional parameter?
Test(const boost::filesystem::path& targetPath, boost::optional<std::vector<std::wstring>> filePath = boost::none);
Could I pass filePath
as a default parameter and by reference at the same time?