Skip to content

Commit 3ba7fab

Browse files
committed
Added P2499 "string_view range consttructor should be explicit"
1 parent 6da1966 commit 3ba7fab

File tree

4 files changed

+439
-0
lines changed

4 files changed

+439
-0
lines changed

fixvscode.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
code { color: inherit; }
2+
pre { background-color: inherit; }
3+
pre code { color: inherit; }
4+
.vscode-light pre { background-color: inherit; }
5+
.vscode-dark pre { background-color: inherit; }
6+
.vscode-high-contrast pre { background-color: inherit; }

isocpp.css

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
body { color: #000000; background-color: #FFFFFF; }
2+
del { text-decoration: line-through; color: #8B0040; }
3+
ins { text-decoration: underline; color: #005100; }
4+
5+
table { border-collapse: collapse; }
6+
th { border: 1px solid black; padding-left: 0.8em; padding-right: 0.8em;
7+
vertical-align: top; }
8+
td { border: 1px solid black; padding-left: 0.8em; padding-right: 0.8em;
9+
vertical-align: top; }
10+
11+
span.comment { font-style: italic; }
12+
span.comment code { font-style: normal; }
13+
span.comment em { font-weight: bold; }
14+
span.comment var { font-style: normal; }
15+
16+
p.example { margin-left: 1em; }
17+
pre.example { margin-left: 1em; }
18+
div.example { margin-left: 1em; }
19+
20+
code.extract { background-color: #F5F6A2; }
21+
pre.extract { margin-left: 2em; background-color: #F5F6A2; border: 1px solid #E1E28E; }
22+
23+
.attribute { margin-left: 2em; }
24+
.attribute dt { float: left; font-style: italic; padding-right: 1ex; }
25+
.attribute dd { margin-left: 0em; }
26+
27+
blockquote.std { color: #000000; background-color: #F1F1F1; border: 1px solid #D1D1D1;
28+
padding-left: 0.5em; padding-right: 0.5em; }
29+
blockquote.std.ins { text-decoration: underline; color: #000000; background-color: #C8FFC8;
30+
border: 1px solid #B3EBB3; }
31+
blockquote.std.del { text-decoration: line-through; color: #000000; background-color: #FFC8EB;
32+
border: 1px solid #ECB3C7; }
33+
blockquote.std div { margin-top: 1em; margin-bottom: 1em; }
34+
blockquote.std ins { text-decoration: underline; color: #000000; background-color: #C8FFC8; }
35+
blockquote.std del { text-decoration: line-through; color: #000000; background-color: #FFC8EB; }
36+
blockquote.std ins * { background-color: inherit; }
37+
blockquote.std del * { background-color: inherit; }
38+
blockquote.std dt { margin-top: 1em; }
39+
blockquote.std ul { list-style-type: none; padding-left: 2em; margin-top: -0.2em; margin-bottom: -0.2em; }
40+
blockquote.std li { margin-top: 0.6em; margin-bottom: 0.6em; }
41+
blockquote.std ul > li::before { content: '\2014'; position: absolute; margin-left: -1.5em; }
42+
blockquote.std table { border: 1px solid black; border-collapse: collapse;
43+
margin-left: auto; margin-right: auto; margin-top: 0.8em; text-align: left;
44+
hyphens: none; }
45+
blockquote.std caption { margin-bottom: 1em; }
46+
blockquote.std th { border: inherit; padding-left: 1em; padding-right: 1em; vertical-align: top; }
47+
blockquote.std td { border: inherit; padding-left: 1em; padding-right: 1em; vertical-align: top; }
48+
blockquote.std th.left, td.left { text-align: left; }
49+
blockquote.std th.right, td.right { text-align: right; }
50+
blockquote.std th.center, td.center { text-align: center; }
51+
blockquote.std th.justify, td.justify { text-align: justify; }
52+
blockquote.std th.border, td.border { border-left: 1px solid black; }
53+
blockquote.std tr.rowsep, td.cline { border-top: 1px solid black; }
54+
blockquote.std tr.capsep { border-top: 3px solid black; border-top-style: double; }
55+
blockquote.std th { border-bottom: 1px solid black; }
56+
57+
div.stdnote { display: inline; }
58+
div.stdexample { display: inline; }
59+
60+
a.stdref::before { content: "["; }
61+
a.stdref::after { content: "]"; }
62+
63+
table.frontmatter { border: 0; margin: 0; }
64+
table.frontmatter th { border: 0; padding: 0 }
65+
table.frontmatter td { border: 0; padding: 0 }
66+
67+
span.highlight { background-color: #7FDFFF }

0 commit comments

Comments
 (0)