File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
lldb/source/Plugins/ExpressionParser/Clang Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -63,9 +63,9 @@ bool CppModuleConfiguration::hasValidConfig() {
63
63
CppModuleConfiguration::CppModuleConfiguration (
64
64
const FileSpecList &support_files) {
65
65
// Analyze all files we were given to build the configuration.
66
- bool error = !std ::all_of (support_files. begin (), support_files. end () ,
67
- std::bind (&CppModuleConfiguration::analyzeFile,
68
- this , std::placeholders::_1));
66
+ bool error = !llvm ::all_of (support_files,
67
+ std::bind (&CppModuleConfiguration::analyzeFile,
68
+ this , std::placeholders::_1));
69
69
// If we have a valid configuration at this point, set the
70
70
// include directories and module list that should be used.
71
71
if (!error && hasValidConfig ()) {
You can’t perform that action at this time.
0 commit comments