[Engine] Clear up compiler warning in tileable rr_graph builder
This commit is contained in:
parent
5f7617b682
commit
025ee67bc7
|
@ -11,12 +11,6 @@ namespace openfpga {
|
|||
/************************************************************************
|
||||
* Constructors
|
||||
***********************************************************************/
|
||||
/* Copy Constructor */
|
||||
RRChan::RRChan(const RRChan& rr_chan) {
|
||||
this->set(rr_chan);
|
||||
return;
|
||||
}
|
||||
|
||||
/* default constructor */
|
||||
RRChan::RRChan() {
|
||||
type_ = NUM_RR_TYPES;
|
||||
|
|
|
@ -43,7 +43,6 @@ namespace openfpga {
|
|||
*******************************************************************/
|
||||
class RRChan {
|
||||
public: /* Constructors */
|
||||
RRChan(const RRChan&); /* Copy Constructor */
|
||||
RRChan();
|
||||
public: /* Accessors */
|
||||
t_rr_type get_type() const;
|
||||
|
|
|
@ -32,13 +32,6 @@ RRGSB::RRGSB() {
|
|||
opin_node_.clear();
|
||||
}
|
||||
|
||||
/* Copy constructor */
|
||||
RRGSB::RRGSB(const RRGSB& src) {
|
||||
/* Copy coordinate */
|
||||
this->set(src);
|
||||
return;
|
||||
}
|
||||
|
||||
/************************************************************************
|
||||
* Accessors
|
||||
***********************************************************************/
|
||||
|
|
|
@ -52,7 +52,6 @@ namespace openfpga {
|
|||
*******************************************************************/
|
||||
class RRGSB {
|
||||
public: /* Contructors */
|
||||
RRGSB(const RRGSB&);/* Copy constructor */
|
||||
RRGSB();/* Default constructor */
|
||||
public: /* Accessors */
|
||||
/* Get the number of sides of this SB */
|
||||
|
|
Loading…
Reference in New Issue