[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
|
* 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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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
|
||||||
***********************************************************************/
|
***********************************************************************/
|
||||||
|
|
|
@ -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 */
|
||||||
|
|
Loading…
Reference in New Issue