enum class RedirectingFileSystem::RedirectKind

Description

The type of redirection to perform.

Declared at: llvm/include/llvm/Support/VirtualFileSystem.h:735

Enumerators

NameValueComment
Fallthrough0Lookup the redirected path first (ie. the one specified in 'external-contents') and if that fails "fallthrough" to a lookup of the originally provided path.
Fallback1Lookup the provided path first and if that fails, "fallback" to a lookup of the redirected path.
RedirectOnly2Only lookup the redirected path, do not lookup the originally provided path.