aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-09-21 21:43:59 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2016-09-21 21:43:59 -0700
commit54341f745c134d740ddc6a6538483070ad5877ef (patch)
tree44496d7e98adccd73a980b87f1049a1894ab801d /toolsrc/include
parenta1b7756c456137b0a9c169a4be03170da81cd5d7 (diff)
downloadvcpkg-54341f745c134d740ddc6a6538483070ad5877ef.tar.gz
vcpkg-54341f745c134d740ddc6a6538483070ad5877ef.zip
MOve recursive upwards search to Files
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg_Files.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/toolsrc/include/vcpkg_Files.h b/toolsrc/include/vcpkg_Files.h
index d23742f74..2c24f9508 100644
--- a/toolsrc/include/vcpkg_Files.h
+++ b/toolsrc/include/vcpkg_Files.h
@@ -8,4 +8,6 @@ namespace vcpkg {namespace Files
void check_is_directory(const std::tr2::sys::path& dirpath);
expected<std::string> get_contents(const std::tr2::sys::path& file_path) noexcept;
+
+ std::tr2::sys::path find_file_recursively_up(const std::tr2::sys::path& starting_dir, const std::string& filename);
}}