From f76f6fc78a2f3598cd58d71c369c0ede6531b78a Mon Sep 17 00:00:00 2001 From: Eyck-Alexander Jentzsch Date: Tue, 7 Apr 2026 09:55:09 +0200 Subject: [PATCH] corrects -h printout --- src/CLIParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CLIParser.cpp b/src/CLIParser.cpp index f9355d5..37ee5f8 100644 --- a/src/CLIParser.cpp +++ b/src/CLIParser.cpp @@ -27,7 +27,7 @@ CLIParser::CLIParser(int argc, char* argv[]) po::store(po::parse_command_line(argc, argv, desc), vm_); // can throw // --help option if(vm_.count("help")) { - std::cout << "DBT-RISE-TGC based virtual platform of TGC cores" << std::endl << desc << std::endl; + std::cout << "DBT-RISE-RISCV based virtual platform of TGC cores" << std::endl << desc << std::endl; exit(0); } po::notify(vm_); // throws on error, so do after help in case there are any problems