Whoops. Not sure what happened there. I had it in earlier. I'll change it to
sizeof() and resubmit.
-Original Message-
From: Chris Johns
Sent: Thursday, September 23, 2021 9:24 PM
To: Ryan Long ; devel@rtems.org
Subject: Re: [PATCH rtems-tools v2 2/7] TraceReader: Convert to C++
On 24/9/21 7:26 am, Ryan Long wrote:
> -bool ReadUntilFound( FILE *file, const char *line )
> +bool ReadUntilFound( std::ifstream& file, const char* line )
> {
> - char discardBuff[100];
> - size_t len = strlen( line );
> + #define BUFFER_LENGTH
There is no value?
> + char discardBuff[BUF