We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
misc-const-correctness
1 parent a43105f commit 0e31c6aCopy full SHA for 0e31c6a
1 file changed
simplecpp.h
@@ -426,6 +426,7 @@ namespace simplecpp {
426
std::pair<FileData *, bool> get(const std::string &sourcefile, const std::string &header, const DUI &dui, bool systemheader, std::vector<std::string> &filenames, OutputList *outputList);
427
428
void insert(FileData data) {
429
+ // NOLINTNEXTLINE(misc-const-correctness) - FP
430
FileData *const newdata = new FileData(std::move(data));
431
432
mData.emplace_back(newdata);
0 commit comments