summaryrefslogtreecommitdiffstats
path: root/tester/covoar
diff options
context:
space:
mode:
authorRyan Long <ryan.long@oarcorp.com>2021-09-22 16:16:09 -0400
committerJoel Sherrill <joel@rtems.org>2021-12-07 10:49:34 -0600
commitad116b655906263402a88a152ada1f67a176d754 (patch)
tree175d848cd074c89fab4c6d26c3f79d60e1998a61 /tester/covoar
parentExplanations.cc: Fix formatting (diff)
downloadrtems-tools-ad116b655906263402a88a152ada1f67a176d754.tar.bz2
Explanations.h: Fix formatting
Diffstat (limited to 'tester/covoar')
-rw-r--r--tester/covoar/Explanations.h14
1 files changed, 4 insertions, 10 deletions
diff --git a/tester/covoar/Explanations.h b/tester/covoar/Explanations.h
index ca7c749..c147c11 100644
--- a/tester/covoar/Explanations.h
+++ b/tester/covoar/Explanations.h
@@ -49,7 +49,7 @@ namespace Coverage {
/*!
* This method constructs an Explanation instance.
*/
- Explanation() {found = false;}
+ Explanation() { found = false; }
/*!
* This method destructs an Explanation instance.
@@ -87,9 +87,7 @@ namespace Coverage {
* @param[in] explanations specifies the file name containing
* the explanation information
*/
- void load(
- const std::string& explanations
- );
+ void load( const std::string& explanations );
/*!
* This method returns the explanation associated with the
@@ -98,9 +96,7 @@ namespace Coverage {
* @param[in] start specifies the starting line number for
* which to search
*/
- const Explanation *lookupExplanation(
- const std::string& start
- );
+ const Explanation *lookupExplanation( const std::string& start );
/*!
* This method writes a file that contains a list of any
@@ -108,9 +104,7 @@ namespace Coverage {
*
* @param[in] fileName specifies the name of the file to write
*/
- void writeNotFound(
- const std::string& fileName
- );
+ void writeNotFound( const std::string& fileName );
};