summaryrefslogtreecommitdiffstats
path: root/tester/covoar/CoverageRanges.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2021-04-06 15:24:08 -0500
committerJoel Sherrill <joel@rtems.org>2021-04-06 15:24:08 -0500
commitfcef37b720a2a2f3d20787b89c72e8f5c2f4e4c2 (patch)
tree8d6e9b8d9ff0922d7a5ac404b082f150d83ed989 /tester/covoar/CoverageRanges.h
parentcoverage.py: Call covoar once (diff)
downloadrtems-tools-fcef37b720a2a2f3d20787b89c72e8f5c2f4e4c2.tar.bz2
covoar: Remove training white spaces
Diffstat (limited to 'tester/covoar/CoverageRanges.h')
-rw-r--r--tester/covoar/CoverageRanges.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/tester/covoar/CoverageRanges.h b/tester/covoar/CoverageRanges.h
index 17640b7..e3b651d 100644
--- a/tester/covoar/CoverageRanges.h
+++ b/tester/covoar/CoverageRanges.h
@@ -39,19 +39,19 @@ namespace Coverage {
*/
typedef struct {
/*!
- * This member contains an identification number for this
+ * This member contains an identification number for this
* coverage range.
*/
uint32_t id;
/*!
- * This member contains the low address of this coverage
+ * This member contains the low address of this coverage
* range.
*/
uint32_t lowAddress;
/*!
- * This member contains the source line associated with the
+ * This member contains the source line associated with the
* low address for this coverage range.
*/
std::string lowSourceLine;
@@ -67,7 +67,7 @@ namespace Coverage {
std::string highSourceLine;
/*!
- * This member contains an instruction count for this coverage
+ * This member contains an instruction count for this coverage
* address range.
*/
uint32_t instructionCount;
@@ -88,12 +88,12 @@ namespace Coverage {
*/
ranges_t set;
- /*!
+ /*!
* This method constructs a CoverageRanges instance.
*/
CoverageRanges();
- /*!
+ /*!
* This method destructs a CoverageRanges instance.
*/
~CoverageRanges();
@@ -112,14 +112,14 @@ namespace Coverage {
uncoveredReason_t why,
uint32_t numInstructions
);
-
+
/*!
* This method returns the index of a range given the low address.
* Upon failure on finding the adress 0 is returned.
*/
uint32_t getId( uint32_t lowAddress );
-
+
protected: