From 8cc86445437e7afc583dee18b36c0e8ba4b6fe12 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 12 Dec 2022 18:35:08 +0300 Subject: Add support for omitting sub-projects from b_info() result --- libbutl/filesystem.ixx | 26 -------------------------- 1 file changed, 26 deletions(-) (limited to 'libbutl/filesystem.ixx') diff --git a/libbutl/filesystem.ixx b/libbutl/filesystem.ixx index 193eae9..79607d7 100644 --- a/libbutl/filesystem.ixx +++ b/libbutl/filesystem.ixx @@ -137,32 +137,6 @@ namespace butl static_cast (y)); } - // path_match_flags - // - inline path_match_flags operator& (path_match_flags x, path_match_flags y) - { - return x &= y; - } - - inline path_match_flags operator| (path_match_flags x, path_match_flags y) - { - return x |= y; - } - - inline path_match_flags operator&= (path_match_flags& x, path_match_flags y) - { - return x = static_cast ( - static_cast (x) & - static_cast (y)); - } - - inline path_match_flags operator|= (path_match_flags& x, path_match_flags y) - { - return x = static_cast ( - static_cast (x) | - static_cast (y)); - } - // dir_entry // inline entry_type dir_entry:: -- cgit v1.1