summaryrefslogtreecommitdiffstats
path: root/tester/covoar/ExecutableInfo.h
diff options
context:
space:
mode:
authorRyan Long <ryan.long@oarcorp.com>2021-07-27 17:16:14 -0400
committerJoel Sherrill <joel@rtems.org>2021-08-03 15:56:53 -0500
commit283e6fd072af85d5f2edab3cb98f2a94b1701a93 (patch)
treee09f1c5cc40fcaadafede09961d3b2711792c503 /tester/covoar/ExecutableInfo.h
parentRemove Verbose global variable (diff)
downloadrtems-tools-283e6fd072af85d5f2edab3cb98f2a94b1701a93.tar.bz2
Remove dynamicLibrary global variable
- Replaced dynamicLibrary in app_common with local variables - Changed data type to string - Changed conditionals to reflect this
Diffstat (limited to 'tester/covoar/ExecutableInfo.h')
-rw-r--r--tester/covoar/ExecutableInfo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tester/covoar/ExecutableInfo.h b/tester/covoar/ExecutableInfo.h
index 1f977a0..851a59d 100644
--- a/tester/covoar/ExecutableInfo.h
+++ b/tester/covoar/ExecutableInfo.h
@@ -43,9 +43,9 @@ namespace Coverage {
* @param[in] verbose specifies whether to be verbose with output
*/
ExecutableInfo(
- const char* const theExecutableName,
- const char* const theLibraryName = NULL,
- bool verbose = false
+ const char* const theExecutableName,
+ const std::string& theLibraryName = "",
+ bool verbose = false
);
/*!