File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,8 @@ Core Grammars:
21
21
- fix(typescript) - Fixedoptional property not highlighted correctly [ Dxuian]
22
22
- fix(ruby) - fix ` |= ` operator false positives (as block arguments) [ Aboobacker MK]
23
23
- fix(sql) - Fixed sql primary key and foreign key spacing issue [ Dxuian]
24
-
24
+ - fix(cpp) added flat_set and flat_map as a part of cpp 23 version [ Lavan]
25
+
25
26
New Grammars:
26
27
27
28
- added 3rd party TTCN-3 grammar to SUPPORTED_LANGUAGES [ Osmocom] [ ]
@@ -53,6 +54,7 @@ CONTRIBUTORS
53
54
[ Sainan ] : https://github.com/Sainan
54
55
[ Osmocom ] : https://github.com/osmocom
55
56
[ Álvaro Mondéjar ] : https://github.com/mondeja
57
+ [ Lavan ] : https://github.com/jvlavan
56
58
57
59
58
60
## Version 11.10.0
Original file line number Diff line number Diff line change @@ -247,6 +247,8 @@ export default function(hljs) {
247
247
'counting_semaphore' ,
248
248
'deque' ,
249
249
'false_type' ,
250
+ 'flat_map' ,
251
+ 'flat_set' ,
250
252
'future' ,
251
253
'imaginary' ,
252
254
'initializer_list' ,
@@ -572,7 +574,7 @@ export default function(hljs) {
572
574
[
573
575
PREPROCESSOR ,
574
576
{ // containers: ie, `vector <int> rooms (9);`
575
- begin : '\\b(deque|list|queue|priority_queue|pair|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array|tuple|optional|variant|function)\\s*<(?!<)' ,
577
+ begin : '\\b(deque|list|queue|priority_queue|pair|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array|tuple|optional|variant|function|flat_map|flat_set )\\s*<(?!<)' ,
576
578
end : '>' ,
577
579
keywords : CPP_KEYWORDS ,
578
580
contains : [
You can’t perform that action at this time.
0 commit comments