Language
C++
Compiler
gcc 5.2.0
Options
Warnings
Boost 1.64.0
C++1z(GNU)
no pedantic
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.64.0/gcc-5.2.0/include -std=gnu++1z
digraph G {
office1 [label="Building office1", shape=circle];
office2 [label="Building office2", shape=circle];
warehouse1 [label="Building warehouse1", shape=circle];
contract1 [label="Contract contract1", shape=diamond];
contract2 [label="Contract contract2", shape=diamond];
office1->office2 ;
warehouse1->contract1 ;
contract2->contract1 ;
}
0 --> 1
1 -->
2 --> 3
3 -->
4 --> 3
Exit Code:
0