diff options
author | bloodstalker <thabogre@gmail.com> | 2016-11-30 09:48:57 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2016-11-30 09:48:57 +0000 |
commit | a8b1c559f791d42aad9ba821890553af3563f790 (patch) | |
tree | 2e92bb32f02e0a8c87aa6535e389c532ed9d4516 | |
parent | added an overloaded member function for XMLReport to add nodes to the xml doc (diff) | |
download | mutator-a8b1c559f791d42aad9ba821890553af3563f790.tar.gz mutator-a8b1c559f791d42aad9ba821890553af3563f790.zip |
added an overloaded member function for XMLReport to add nodes to the xml doc
Diffstat (limited to '')
-rw-r--r-- | mutator_aux.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mutator_aux.h b/mutator_aux.h index 4f97d10..303d01f 100644 --- a/mutator_aux.h +++ b/mutator_aux.h @@ -20,6 +20,9 @@ public: void XMLCreateReport(void); void XMLAddNode(ASTContext* ASTC, SourceLocation SL, std::string MisraRule, std::string Description); + /*overloaded for rule checks that announce the result on onendoftranslation instead of run + since they dont have access to matchresult or astcontext.*/ + void XMLAddNode(FullSourceLoc FSL, SourceLocation SL, std::string MisraRule, std::string Description); void SaveReport(void); private: |