aboutsummaryrefslogtreecommitdiffstats
path: root/mutator-lvl0.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--mutator-lvl0.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/mutator-lvl0.cpp b/mutator-lvl0.cpp
index 2be95af..b88eff3 100644
--- a/mutator-lvl0.cpp
+++ b/mutator-lvl0.cpp
@@ -5271,15 +5271,15 @@ public:
}
/*end of 19.4*/
- if (MacroNameString == "offsetof" && SM.isInSystemHeader(DMD->getLocation()))
+ if (MacroNameString == "offsetof")
{
- if (Devi::IsTheMatchInSysHeader(CheckSystemHeader, SM, SL))
+ if (Devi::IsTheMatchInSysHeader(CheckSystemHeader, SM, MDSL))
{
/*intentionally left blank*/
}
else
{
- if (Devi::IsTheMatchInMainFile(MainFileOnly, SM, SL))
+ if (Devi::IsTheMatchInMainFile(MainFileOnly, SM, MDSL))
{
std::cout << "20.6:" << "use of offsetof is illegal:";
std::cout << Range.getBegin().printToString(SM) << ":" << std::endl;
@@ -5290,15 +5290,15 @@ public:
}
}
- if (MacroNameString == "setjmp" && SM.isInSystemHeader(DMD->getLocation()))
+ if (MacroNameString == "setjmp")
{
- if (Devi::IsTheMatchInSysHeader(CheckSystemHeader, SM, SL))
+ if (Devi::IsTheMatchInSysHeader(CheckSystemHeader, SM, MDSL))
{
/*intentionally left blank*/
}
else
{
- if (Devi::IsTheMatchInMainFile(MainFileOnly, SM, SL))
+ if (Devi::IsTheMatchInMainFile(MainFileOnly, SM, MDSL))
{
std::cout << "20.7:" << "use of setjmp is illegal:";
std::cout << Range.getBegin().printToString(SM) << ":" << std::endl;
@@ -5311,14 +5311,14 @@ public:
if (!DMD->isDefined())
{
- if (Devi::IsTheMatchInSysHeader(CheckSystemHeader, SM, SL))
+ if (Devi::IsTheMatchInSysHeader(CheckSystemHeader, SM, MDSL))
{
/*intentionally left blank*/
}
else
{
/*@DEVI-by the time we get a callback on our callback, the macri is assigned a default vlaue even if it is undefined in the TU.*/
- if (Devi::IsTheMatchInMainFile(MainFileOnly, SM, SL))
+ if (Devi::IsTheMatchInMainFile(MainFileOnly, SM, MDSL))
{
std::cout << "19.11:" << "Use of undefined macro:";
std::cout << Range.getBegin().printToString(SM) << ":" << std::endl;