Skip to content

Commit 6f9ef7e

Browse files
committed
Move connection_box to end to preserve order w.r.t. upstream.
Signed-off-by: Keith Rothman <[email protected]>
1 parent 5147649 commit 6f9ef7e

File tree

5 files changed

+508
-507
lines changed

5 files changed

+508
-507
lines changed

libs/libvtrcapnproto/gen/rr_graph_uxsdcxx.capnp

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
#
55
# Cmdline: uxsdcxx/uxsdcap.py rr_graph.xsd
66
# Input file: rr_graph.xsd
7-
# md5sum of input file: d9e439fa173fdf56b51feeed0ac48272
7+
# md5sum of input file: bea3923ac9822e94db96d5d9d15e18c6
88

9-
@0xa90e1cca7f71265c;
9+
@0xf281a101eeb2a247;
1010
using Cxx = import "/capnp/c++.capnp";
1111
$Cxx.namespace("ucap");
1212

@@ -138,18 +138,6 @@ struct BlockTypes {
138138
blockTypes @0 :List(BlockType);
139139
}
140140

141-
struct ConnectionBoxDeclaration {
142-
id @0 :UInt32;
143-
name @1 :Text;
144-
}
145-
146-
struct ConnectionBoxes {
147-
numBoxes @0 :UInt32;
148-
xDim @1 :UInt32;
149-
yDim @2 :UInt32;
150-
connectionBoxes @3 :List(ConnectionBoxDeclaration);
151-
}
152-
153141
struct GridLoc {
154142
blockTypeId @0 :Int32;
155143
heightOffset @1 :Int32;
@@ -229,6 +217,18 @@ struct RrEdges {
229217
edges @0 :List(Edge);
230218
}
231219

220+
struct ConnectionBoxDeclaration {
221+
id @0 :UInt32;
222+
name @1 :Text;
223+
}
224+
225+
struct ConnectionBoxes {
226+
numBoxes @0 :UInt32;
227+
xDim @1 :UInt32;
228+
yDim @2 :UInt32;
229+
connectionBoxes @3 :List(ConnectionBoxDeclaration);
230+
}
231+
232232
struct RrGraph {
233233
toolComment @0 :Text;
234234
toolName @1 :Text;
@@ -237,8 +237,8 @@ struct RrGraph {
237237
switches @4 :Switches;
238238
segments @5 :Segments;
239239
blockTypes @6 :BlockTypes;
240-
connectionBoxes @7 :ConnectionBoxes;
241-
grid @8 :GridLocs;
242-
rrNodes @9 :RrNodes;
243-
rrEdges @10 :RrEdges;
240+
grid @7 :GridLocs;
241+
rrNodes @8 :RrNodes;
242+
rrEdges @9 :RrEdges;
243+
connectionBoxes @10 :ConnectionBoxes;
244244
}

0 commit comments

Comments
 (0)