diff options
-rw-r--r-- | mutator-lvl0.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mutator-lvl0.h b/mutator-lvl0.h index 1e04d55..0da9d54 100644 --- a/mutator-lvl0.h +++ b/mutator-lvl0.h @@ -479,13 +479,15 @@ class MutagenExtraction void ExtractWeakPoints(SourceLocation __sl, SourceManager &__sm, std::string __type) { - WeakPoint tmp = WeakPoint(__type, __sm.getFilename(__sl).str(), __sm.getSpellingLineNumber(__sl), __sm.getSpellingColumnNumber(__sl)); + WeakPoint tmp = WeakPoint(__type, __sm.getFilename(__sl).str(), \ + __sm.getSpellingLineNumber(__sl), __sm.getSpellingColumnNumber(__sl)); WeakPoints.push_back(tmp); } void ExtractWeakPoints(FullSourceLoc __fsl, SourceLocation __sl, std::string __type) { - WeakPoint tmp = WeakPoint(__type, __fsl.getManager().getFilename(__sl).str(), __fsl.getSpellingLineNumber(), __fsl.getSpellingColumnNumber()); + WeakPoint tmp = WeakPoint(__type, __fsl.getManager().getFilename(__sl).str(), \ + __fsl.getSpellingLineNumber(), __fsl.getSpellingColumnNumber()); WeakPoints.push_back(tmp); } |