Skip to content

Commit 8a72a8d

Browse files
committed
Drop unused "stl_container" class.
1 parent f69356a commit 8a72a8d

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

docs/css-classes-reference.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,6 @@ Thrift ("thrift")
519519
* ``comment``: comment
520520
* ``class``: struct, enum, service or exception definition header
521521
* ``title``: struct, enum, service or exception identifier
522-
* ``stl_container``: instantiation of STL-like containers ("list<...>")
523522

524523
HTTP ("http")
525524
-------------
@@ -614,7 +613,6 @@ C++ ("cpp", "c", "h", "c++", "h++")
614613
* ``string``: string and character
615614
* ``comment``: comment
616615
* ``preprocessor``: preprocessor directive
617-
* ``stl_container``: instantiation of STL containers ("vector<...>")
618616

619617
Objective C ("objectivec", "m", "mm", "objc", "obj-c")
620618
------------------------------------------------------

src/languages/cpp.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ function(hljs) {
6666
]
6767
},
6868
{
69-
className: 'stl_container',
7069
begin: '\\b(deque|list|queue|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\s*<', end: '>',
7170
keywords: CPP_KEYWORDS,
7271
contains: ['self']

src/languages/thrift.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ function(hljs) {
3232
]
3333
},
3434
{
35-
className: 'stl_container',
3635
begin: '\\b(set|list|map)\\s*<', end: '>',
3736
keywords: BUILT_IN_TYPES,
3837
contains: ['self']

0 commit comments

Comments
 (0)