[Engine] Clear up compiler warning in tileable rr_graph builder

This commit is contained in:
tangxifan 2021-09-24 15:20:43 -07:00
parent 5f7617b682
commit 025ee67bc7
4 changed files with 0 additions and 15 deletions

View File

@ -11,12 +11,6 @@ namespace openfpga {
/************************************************************************ /************************************************************************
* Constructors * Constructors
***********************************************************************/ ***********************************************************************/
/* Copy Constructor */
RRChan::RRChan(const RRChan& rr_chan) {
this->set(rr_chan);
return;
}
/* default constructor */ /* default constructor */
RRChan::RRChan() { RRChan::RRChan() {
type_ = NUM_RR_TYPES; type_ = NUM_RR_TYPES;

View File

@ -43,7 +43,6 @@ namespace openfpga {
*******************************************************************/ *******************************************************************/
class RRChan { class RRChan {
public: /* Constructors */ public: /* Constructors */
RRChan(const RRChan&); /* Copy Constructor */
RRChan(); RRChan();
public: /* Accessors */ public: /* Accessors */
t_rr_type get_type() const; t_rr_type get_type() const;

View File

@ -32,13 +32,6 @@ RRGSB::RRGSB() {
opin_node_.clear(); opin_node_.clear();
} }
/* Copy constructor */
RRGSB::RRGSB(const RRGSB& src) {
/* Copy coordinate */
this->set(src);
return;
}
/************************************************************************ /************************************************************************
* Accessors * Accessors
***********************************************************************/ ***********************************************************************/

View File

@ -52,7 +52,6 @@ namespace openfpga {
*******************************************************************/ *******************************************************************/
class RRGSB { class RRGSB {
public: /* Contructors */ public: /* Contructors */
RRGSB(const RRGSB&);/* Copy constructor */
RRGSB();/* Default constructor */ RRGSB();/* Default constructor */
public: /* Accessors */ public: /* Accessors */
/* Get the number of sides of this SB */ /* Get the number of sides of this SB */