We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 379c8af commit be76317Copy full SHA for be76317
vpr/SRC/base/rr_node.h
@@ -51,7 +51,7 @@
51
52
#define NO_PREVIOUS -1
53
54
-class t_rr_node {
+typedef class RR_Node {
55
56
private:
57
short xlow;
@@ -111,7 +111,7 @@ class t_rr_node {
111
void set_direction(e_direction);
112
void set_occ(short);
113
114
-};
+} t_rr_node;
115
116
117
/* Data that is pointed to by the .cost_index member of t_rr_node. It's *
vpr/SRC/base/vpr_types.h
@@ -122,7 +122,7 @@ enum e_block_pack_status {
122
};
123
124
/* these are defined later, but need to declare here because it is used */
125
-class t_rr_node;
+typedef class RR_Node t_rr_node;
126
struct s_pack_molecule;
127
struct s_pb_stats;
128
0 commit comments