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 c9c4204 commit 092f92fCopy full SHA for 092f92f
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