Fix broken text product message function signature

This commit is contained in:
Dan Paulat 2025-02-02 01:43:36 -06:00
parent f9e79b3e40
commit 2eb65defbc

View file

@ -25,8 +25,8 @@ static const auto logger_ = scwx::util::Logger::Create(logPrefix_);
// Look for hhmm (xM|UTC) to key the date/time string // Look for hhmm (xM|UTC) to key the date/time string
static constexpr LazyRE2 reDateTimeString = {"^[0-9]{3,4} ([AP]M|UTC)"}; static constexpr LazyRE2 reDateTimeString = {"^[0-9]{3,4} ([AP]M|UTC)"};
static void ParseCodedInformation(std::shared_ptr<Segment> segment, static void ParseCodedInformation(const std::shared_ptr<Segment>& segment,
const std::string& wfo); const std::string& wfo);
static std::vector<std::string> ParseProductContent(std::istream& is); static std::vector<std::string> ParseProductContent(std::istream& is);
static void SkipBlankLines(std::istream& is); static void SkipBlankLines(std::istream& is);
static bool TryParseEndOfProduct(std::istream& is); static bool TryParseEndOfProduct(std::istream& is);