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 ca19732 commit 9362069Copy full SHA for 9362069
1 file changed
simplecpp.h
@@ -418,6 +418,7 @@ namespace simplecpp {
418
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);
419
420
void insert(FileData data) {
421
+ // NOLINTNEXTLINE(misc-const-correctness) - FP
422
FileData *const newdata = new FileData(std::move(data));
423
424
mData.emplace_back(newdata);
0 commit comments