summaryrefslogtreecommitdiffstats
path: root/tester/covoar/CoverageReaderTSIM.h
diff options
context:
space:
mode:
authorRyan Long <ryan.long@oarcorp.com>2021-07-13 14:58:45 -0400
committerJoel Sherrill <joel@rtems.org>2021-09-07 14:26:51 -0500
commit32ff9bb2967f1a5caa503ec06e97b8320b98dad6 (patch)
tree8dd7e4fb139cc2aeb2d9faf8abaace64e9b21e14 /tester/covoar/CoverageReaderTSIM.h
parentCoverageMap.cc: Fix formatting (diff)
downloadrtems-tools-32ff9bb2967f1a5caa503ec06e97b8320b98dad6.tar.bz2
CoverageReader: Convert to C++
Diffstat (limited to 'tester/covoar/CoverageReaderTSIM.h')
-rw-r--r--tester/covoar/CoverageReaderTSIM.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tester/covoar/CoverageReaderTSIM.h b/tester/covoar/CoverageReaderTSIM.h
index e4ae849..4980981 100644
--- a/tester/covoar/CoverageReaderTSIM.h
+++ b/tester/covoar/CoverageReaderTSIM.h
@@ -7,6 +7,8 @@
#ifndef __COVERAGE_READER_TSIM_H__
#define __COVERAGE_READER_TSIM_H__
+#include <string>
+
#include "CoverageReaderBase.h"
#include "ExecutableInfo.h"
@@ -36,7 +38,7 @@ namespace Coverage {
/* Inherit documentation from base class. */
void processFile(
- const char* const file,
+ const std::string& file,
ExecutableInfo* const executableInformation
);
};