[libcxx] r337532 - adjust incorrect comment
Eric Fiselier via cfe-commits
cfe-commits at lists.llvm.org
Fri Jul 20 01:36:45 PDT 2018
Author: ericwf
Date: Fri Jul 20 01:36:45 2018
New Revision: 337532
URL: http://llvm.org/viewvc/llvm-project?rev=337532&view=rev
Log:
adjust incorrect comment
Modified:
libcxx/trunk/src/experimental/filesystem/operations.cpp
Modified: libcxx/trunk/src/experimental/filesystem/operations.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/src/experimental/filesystem/operations.cpp?rev=337532&r1=337531&r2=337532&view=diff
==============================================================================
--- libcxx/trunk/src/experimental/filesystem/operations.cpp (original)
+++ libcxx/trunk/src/experimental/filesystem/operations.cpp Fri Jul 20 01:36:45 2018
@@ -1426,7 +1426,8 @@ error_code directory_entry::__do_refresh
__data_.__cache_type_ = directory_entry::_RefreshSymlinkUnresolved;
return error_code{};
}
- // Otherwise, we resolved the link as not existing. That's OK.
+ // Otherwise, we either resolved the link, potentially as not existing.
+ // That's OK.
__data_.__cache_type_ = directory_entry::_RefreshSymlink;
}
More information about the cfe-commits
mailing list