Skip to content

Commit fd3ea41

Browse files
committed
Fixed broken speed/level group regex
#4
1 parent a2313aa commit fd3ea41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DelHel/constants.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const COLORREF TAG_COLOR_RED = RGB(200, 0, 0);
2323
const COLORREF TAG_COLOR_ORANGE = RGB(255, 165, 0);
2424
const COLORREF TAG_COLOR_GREEN = RGB(0, 200, 0);
2525

26-
const std::regex REGEX_SPEED_LEVEL_GROUP = std::regex("([\\w\\d]*)\\/)((?:N|K)\\d{4})((?:F\\d{3})|(?:S\\d{4})|(?:A\\d{3})|(?:M\\d{4})|(?:VFR))", std::regex_constants::ECMAScript);
26+
const std::regex REGEX_SPEED_LEVEL_GROUP = std::regex("([\\w\\d]*)\\/((?:N|K)\\d{4})((?:F\\d{3})|(?:S\\d{4})|(?:A\\d{3})|(?:M\\d{4})|(?:VFR))", std::regex_constants::ECMAScript);
2727

2828
const int AUTO_ASSIGN_MIN_FL = 5000;
2929
const int VFR_TRAFFIC_PATTERN_ALTITUDE = 1000;

0 commit comments

Comments
 (0)