Skip to content

Commit ee8a658

Browse files
author
p12
committed
Images: add inheritance diagram for std::bad_optional_access
1 parent 40e86a0 commit ee8a658

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/*
2+
Copyright (C) 2013 p12 <tir5c3@yahoo.co.uk>
3+
4+
This file is part of cppreference-doc
5+
6+
This program is free software: you can redistribute it and/or modify
7+
it under the terms of the GNU General Public License as published by
8+
the Free Software Foundation, either version 3 of the License, or
9+
(at your option) any later version.
10+
11+
This program is distributed in the hope that it will be useful,
12+
but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
GNU General Public License for more details.
15+
16+
You should have received a copy of the GNU General Public License
17+
along with this program. If not, see http://www.gnu.org/licenses/.
18+
*/
19+
digraph inheritance {
20+
21+
@SETTINGS@
22+
23+
e1 [
24+
label = "exception",
25+
tooltip = "std::exception",
26+
URL="cpp/error/exception"
27+
];
28+
29+
e2 [
30+
label = "logic_error",
31+
tooltip = "std::logic_error",
32+
URL="cpp/error/logic_error"
33+
];
34+
35+
e3 [
36+
label = "bad_optional_access",
37+
tooltip = "std::bad_optional_access",
38+
fillcolor = lightgrey
39+
];
40+
41+
e2 -> e1;
42+
e3 -> e2;
43+
}​​

0 commit comments

Comments
 (0)