From cb62d64d5e396a77db89a349279174e690e5baa7 Mon Sep 17 00:00:00 2001 From: triton Date: Tue, 18 Feb 2014 15:06:06 +0000 Subject: [PATCH] Fixed the parser, it got broken in a recent pull request merge. --- src/CppParser/Parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CppParser/Parser.cpp b/src/CppParser/Parser.cpp index 94fa22c6..03fc28bf 100644 --- a/src/CppParser/Parser.cpp +++ b/src/CppParser/Parser.cpp @@ -2047,7 +2047,7 @@ PreprocessedEntity* Parser::WalkPreprocessedEntity( auto Definition = new MacroDefinition(); Entity = Definition; - Definition->Namespace = GetTranslationUnit(MD->getLocation(), NULL); + Definition->_Namespace = GetTranslationUnit(MD->getLocation(), NULL); Definition->Name = II->getName().trim(); Definition->Expression = Expression.trim(); }