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 adfa5ed commit e4eba30Copy full SHA for e4eba30
1 file changed
simplecpp.h
@@ -430,6 +430,7 @@ namespace simplecpp {
430
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);
431
432
void insert(FileData data) {
433
+ // NOLINTNEXTLINE(misc-const-correctness) - FP
434
FileData *const newdata = new FileData(std::move(data));
435
436
mData.emplace_back(newdata);
0 commit comments