Re: [PATCH rtems-tools v1 02/10] covoar.cc: Convert to C++

2021-09-09 Thread Chris Johns
On 10/9/21 12:17 am, Ryan Long wrote: > ExecutableInfo takes a const char* const parameter and initializes a string. > I tried to take off the c_str(), but it wouldn't build then. Is it alright > for that to temporarily stay there until I make a sweep through > ExecutableInfo.cc? Or do you want

RE: [PATCH rtems-tools v1 02/10] covoar.cc: Convert to C++

2021-09-09 Thread Ryan Long
it to this patchset? I was able to remove the c_str() from the CoverageFormatToEnum() call though. -Original Message- From: devel On Behalf Of Chris Johns Sent: Wednesday, September 8, 2021 5:46 PM To: devel@rtems.org Subject: Re: [PATCH rtems-tools v1 02/10] covoar.cc: Convert to C++ On 9/9/21

Re: [PATCH rtems-tools v1 02/10] covoar.cc: Convert to C++

2021-09-08 Thread Chris Johns
On 9/9/21 2:44 am, Ryan Long wrote: > Got rid of C-strings, changed FILE pointer to ifstream. > --- > tester/covoar/covoar.cc | 52 > +++-- > 1 file changed, 24 insertions(+), 28 deletions(-) > > diff --git a/tester/covoar/covoar.cc

[PATCH rtems-tools v1 02/10] covoar.cc: Convert to C++

2021-09-08 Thread Ryan Long
Got rid of C-strings, changed FILE pointer to ifstream. --- tester/covoar/covoar.cc | 52 +++-- 1 file changed, 24 insertions(+), 28 deletions(-) diff --git a/tester/covoar/covoar.cc b/tester/covoar/covoar.cc index f9d4814..746add1 100644 ---