Skip to content

Commit be76317

Browse files
committed
Giving the rr node class a proper class name
git-svn-id: https://vtr-verilog-to-routing.googlecode.com/svn/trunk@4465 8e3573b8-cf2c-4f14-ef6d-137439e28b8b
1 parent 379c8af commit be76317

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

vpr/SRC/base/rr_node.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
#define NO_PREVIOUS -1
5353

54-
class t_rr_node {
54+
typedef class RR_Node {
5555

5656
private:
5757
short xlow;
@@ -111,7 +111,7 @@ class t_rr_node {
111111
void set_direction(e_direction);
112112
void set_occ(short);
113113

114-
};
114+
} t_rr_node;
115115

116116

117117
/* Data that is pointed to by the .cost_index member of t_rr_node. It's *

vpr/SRC/base/vpr_types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ enum e_block_pack_status {
122122
};
123123

124124
/* these are defined later, but need to declare here because it is used */
125-
class t_rr_node;
125+
typedef class RR_Node t_rr_node;
126126
struct s_pack_molecule;
127127
struct s_pb_stats;
128128

0 commit comments

Comments
 (0)