We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3ec924c + 0f31802 commit debf370Copy full SHA for debf370
clang-tools-extra/clangd/CompileCommands.h
@@ -12,6 +12,7 @@
12
#include "clang/Tooling/ArgumentsAdjusters.h"
13
#include "clang/Tooling/CompilationDatabase.h"
14
#include "llvm/ADT/StringMap.h"
15
+#include <deque>
16
#include <string>
17
#include <vector>
18
@@ -92,7 +93,7 @@ class ArgStripper {
92
93
const Rule *matchingRule(llvm::StringRef Arg, unsigned Mode,
94
unsigned &ArgCount) const;
95
llvm::SmallVector<Rule, 4> Rules;
- std::vector<std::string> Storage; // Store strings not found in option table.
96
+ std::deque<std::string> Storage; // Store strings not found in option table.
97
};
98
99
} // namespace clangd
0 commit comments