aboutsummaryrefslogtreecommitdiffstats
path: root/cgrep.cpp
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2020-03-06 12:35:53 +0000
committerbloodstalker <thabogre@gmail.com>2020-03-06 12:35:53 +0000
commitb2b9cde8cdccfb951ba810ffd421a3379f2a148b (patch)
tree35023735843a82a86dd3ef95e6f351fc74d013e8 /cgrep.cpp
parentfixed some codacy smells (diff)
downloadcgrep-b2b9cde8cdccfb951ba810ffd421a3379f2a148b.tar.gz
cgrep-b2b9cde8cdccfb951ba810ffd421a3379f2a148b.zip
coverity fix
Diffstat (limited to 'cgrep.cpp')
-rw-r--r--cgrep.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/cgrep.cpp b/cgrep.cpp
index 1acf4a6..a764ba9 100644
--- a/cgrep.cpp
+++ b/cgrep.cpp
@@ -158,10 +158,10 @@ static std::string get_line_from_file(SourceManager &SM,
std::string mainfile_str = MR.SourceManager->getFilename(SR.getBegin()).str();
mainfile.open(mainfile_str);
auto linenumber = MR.SourceManager->getSpellingLineNumber(SR.getBegin());
- auto columnnumber_start =
- MR.SourceManager->getSpellingColumnNumber(SR.getBegin()) - 1;
- auto columnnumber_end =
- MR.SourceManager->getSpellingColumnNumber(SR.getEnd()) - 1;
+ //auto columnnumber_start =
+ //MR.SourceManager->getSpellingColumnNumber(SR.getBegin()) - 1;
+ //auto columnnumber_end =
+ //MR.SourceManager->getSpellingColumnNumber(SR.getEnd()) - 1;
std::string line;
unsigned line_nu = 0;
@@ -290,8 +290,8 @@ void output_handler(const MatchFinder::MatchResult &MR, SourceRange SR,
std::vector<std::string> listDirs(std::string path) {
std::vector<std::string> dummy;
DIR *dir;
- struct dirent *ent;
if ((dir = opendir(path.c_str())) != nullptr) {
+ struct dirent *ent;
while ((ent = readdir(dir)) != nullptr) {
std::cout << "name: " << ent->d_name << "\ttype:" << int(ent->d_type)
<< "\n";
@@ -393,7 +393,6 @@ public:
if (regex_handler(REGEX_PP(CO_REGEX), name)) {
ast_type_traits::DynTypedNode DNode =
ast_type_traits::DynTypedNode::create(*MD);
- NamedDecl const *ND = DNode.get<NamedDecl>();
auto StartLocation = MD->getLocation();
auto EndLocation = StartLocation.getLocWithOffset(name.size() - 1);
auto Range = SourceRange(StartLocation, EndLocation);