You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository contains code to generate a flowchart showing the initialization rules for C++20.
3
+
This repository contains code to generate a flowchart showing the initialization rules for C++20 and C++23.
4
4
5
-
The generated files are hosted on Github Pages: [SVG](https://randomnetcat.github.io/cpp_initialization/initialization.svg), [PNG](https://randomnetcat.github.io/cpp_initialization/initialization.png).
The repository contains an M4 file which can be preprocessed into a graphviz dot file using GNU M4. Feed the preprocessed file into dot to get an image file.
10
-
11
-
Example for SVG: `m4 flowchart.dot.m4 | dot -Tsvg > flowchart.svg`
12
-
13
-
Example for PNG: `m4 flowchart.dot.m4 | dot -Tpng > flowchart.png`
14
-
15
-
Consult the `dot` manual for all of the file types and other options for controlling `dot`.
0 commit comments