1
0

feat: fully refactor BMapInspector rule set for better layout

This commit is contained in:
2026-03-03 17:11:30 +08:00
parent 49a729078c
commit 4c71a20935
35 changed files with 1628 additions and 1428 deletions

View File

@@ -16,6 +16,11 @@ namespace BMapInspector::Utils {
Info = 2,
};
/**
* @brief Parse given string as report level.
* @param[in] value The string for parsing.
* @return Parsed level or nothing (error occurs).
*/
std::optional<ReportLevel> ParseReportLevel(const std::u8string_view& value);
/**