[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
***********************************************************************/
/* Copy Constructor */
RRChan::RRChan(const RRChan& rr_chan) {
this->set(rr_chan);
return;
}
/* default constructor */
RRChan::RRChan() {
type_ = NUM_RR_TYPES;

View File

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

View File

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

View File

@ -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 */