aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2017-05-25 17:28:05 +0000
committerbloodstalker <thabogre@gmail.com>2017-05-25 17:28:05 +0000
commitfab1f1d028b04e23e358dd8eb29ee16a2f790ab1 (patch)
tree564b30ab7c40950bed51713b494f17b80685a60d
parentadding the extraction to some related matchers (diff)
downloadmutator-fab1f1d028b04e23e358dd8eb29ee16a2f790ab1.tar.gz
mutator-fab1f1d028b04e23e358dd8eb29ee16a2f790ab1.zip
changed the destructor to virtual
Diffstat (limited to '')
-rw-r--r--mutator-lvl0.h6
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);
}