diff --git a/vpr/src/tileable_rr_graph/rr_chan.cpp b/vpr/src/tileable_rr_graph/rr_chan.cpp index fc387a988..0aea3cee4 100644 --- a/vpr/src/tileable_rr_graph/rr_chan.cpp +++ b/vpr/src/tileable_rr_graph/rr_chan.cpp @@ -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; diff --git a/vpr/src/tileable_rr_graph/rr_chan.h b/vpr/src/tileable_rr_graph/rr_chan.h index 3277bb173..d06d894ca 100644 --- a/vpr/src/tileable_rr_graph/rr_chan.h +++ b/vpr/src/tileable_rr_graph/rr_chan.h @@ -43,7 +43,6 @@ namespace openfpga { *******************************************************************/ class RRChan { public: /* Constructors */ - RRChan(const RRChan&); /* Copy Constructor */ RRChan(); public: /* Accessors */ t_rr_type get_type() const; diff --git a/vpr/src/tileable_rr_graph/rr_gsb.cpp b/vpr/src/tileable_rr_graph/rr_gsb.cpp index c0d8d4143..eff2ebf00 100644 --- a/vpr/src/tileable_rr_graph/rr_gsb.cpp +++ b/vpr/src/tileable_rr_graph/rr_gsb.cpp @@ -32,13 +32,6 @@ RRGSB::RRGSB() { opin_node_.clear(); } -/* Copy constructor */ -RRGSB::RRGSB(const RRGSB& src) { - /* Copy coordinate */ - this->set(src); - return; -} - /************************************************************************ * Accessors ***********************************************************************/ diff --git a/vpr/src/tileable_rr_graph/rr_gsb.h b/vpr/src/tileable_rr_graph/rr_gsb.h index a0d13ad4a..38465369d 100644 --- a/vpr/src/tileable_rr_graph/rr_gsb.h +++ b/vpr/src/tileable_rr_graph/rr_gsb.h @@ -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 */