summaryrefslogtreecommitdiffstats
path: root/tester/covoar/CoverageReaderQEMU.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/CoverageReaderQEMU.h
parentCoverageMap.cc: Fix formatting (diff)
downloadrtems-tools-32ff9bb2967f1a5caa503ec06e97b8320b98dad6.tar.bz2
CoverageReader: Convert to C++
Diffstat (limited to 'tester/covoar/CoverageReaderQEMU.h')
-rw-r--r--tester/covoar/CoverageReaderQEMU.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tester/covoar/CoverageReaderQEMU.h b/tester/covoar/CoverageReaderQEMU.h
index ec87ff0..11ad720 100644
--- a/tester/covoar/CoverageReaderQEMU.h
+++ b/tester/covoar/CoverageReaderQEMU.h
@@ -7,6 +7,8 @@
#ifndef __COVERAGE_READER_QEMU_H__
#define __COVERAGE_READER_QEMU_H__
+#include <fstream>
+
#include "CoverageReaderBase.h"
#include "ExecutableInfo.h"
@@ -37,7 +39,7 @@ TBD
/* Inherit documentation from base class. */
void processFile(
- const char* const file,
+ const std::string& file,
ExecutableInfo* const executableInformation
);
};