Please use GitHub pull requests for new patches. Avoid migrating existing patches. Phabricator shutdown timeline
Changeset View
Changeset View
Standalone View
Standalone View
llvm/include/llvm/Support/VirtualFileSystem.h
Show First 20 Lines • Show All 782 Lines • ▼ Show 20 Lines | private: | ||||
std::string ExternalContentsPrefixDir; | std::string ExternalContentsPrefixDir; | ||||
/// @name Configuration | /// @name Configuration | ||||
/// @{ | /// @{ | ||||
/// Whether to perform case-sensitive comparisons. | /// Whether to perform case-sensitive comparisons. | ||||
/// | /// | ||||
/// Currently, case-insensitive matching only works correctly with ASCII. | /// Currently, case-insensitive matching only works correctly with ASCII. | ||||
bool CaseSensitive = | bool CaseSensitive = is_style_posix(sys::path::Style::native); | ||||
#ifdef _WIN32 | |||||
false; | |||||
#else | |||||
true; | |||||
#endif | |||||
/// IsRelativeOverlay marks whether a ExternalContentsPrefixDir path must | /// IsRelativeOverlay marks whether a ExternalContentsPrefixDir path must | ||||
/// be prefixed in every 'external-contents' when reading from YAML files. | /// be prefixed in every 'external-contents' when reading from YAML files. | ||||
bool IsRelativeOverlay = false; | bool IsRelativeOverlay = false; | ||||
/// Whether to use to use the value of 'external-contents' for the | /// Whether to use to use the value of 'external-contents' for the | ||||
/// names of files. This global value is overridable on a per-file basis. | /// names of files. This global value is overridable on a per-file basis. | ||||
bool UseExternalNames = true; | bool UseExternalNames = true; | ||||
▲ Show 20 Lines • Show All 113 Lines • Show Last 20 Lines |