filesystem (0b57cec536236d46e3dba9bd041533462f33dbb7) | filesystem (e40139ff33b48b56a24c808b166b04b8ee6f5b21) |
---|---|
1// -*- C++ -*- 2//===--------------------------- filesystem -------------------------------===// 3// 4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 5// See https://llvm.org/LICENSE.txt for license information. 6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7// 8//===----------------------------------------------------------------------===// --- 2569 unchanged lines hidden (view full) --- 2578 2579 _LIBCPP_INLINE_VISIBILITY 2580 bool recursion_pending() const { return __rec_; } 2581 2582 _LIBCPP_INLINE_VISIBILITY 2583 void disable_recursion_pending() { __rec_ = false; } 2584 2585private: | 1// -*- C++ -*- 2//===--------------------------- filesystem -------------------------------===// 3// 4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 5// See https://llvm.org/LICENSE.txt for license information. 6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7// 8//===----------------------------------------------------------------------===// --- 2569 unchanged lines hidden (view full) --- 2578 2579 _LIBCPP_INLINE_VISIBILITY 2580 bool recursion_pending() const { return __rec_; } 2581 2582 _LIBCPP_INLINE_VISIBILITY 2583 void disable_recursion_pending() { __rec_ = false; } 2584 2585private: |
2586 _LIBCPP_FUNC_VIS |
|
2586 recursive_directory_iterator(const path& __p, directory_options __opt, 2587 error_code* __ec); 2588 2589 _LIBCPP_FUNC_VIS 2590 const directory_entry& __dereference() const; 2591 2592 _LIBCPP_FUNC_VIS 2593 bool __try_recursion(error_code* __ec); --- 50 unchanged lines hidden --- | 2587 recursive_directory_iterator(const path& __p, directory_options __opt, 2588 error_code* __ec); 2589 2590 _LIBCPP_FUNC_VIS 2591 const directory_entry& __dereference() const; 2592 2593 _LIBCPP_FUNC_VIS 2594 bool __try_recursion(error_code* __ec); --- 50 unchanged lines hidden --- |