Skip to content

Commit a6c8688

Browse files
don't use default values for member variables initialized in constructor
1 parent 3690af8 commit a6c8688

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vpr/src/place/net_cost_handler.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@ class NetCostHandler {
122122

123123
private:
124124
///@brief Specifies whether the bounding box is computed using cube method or per-layer method.
125-
bool cube_bb_ = false;
125+
bool cube_bb_;
126126
///@brief Determines whether the FPGA has multiple dies (layers)
127-
bool is_multi_layer_ = false;
127+
bool is_multi_layer_;
128128
///@brief A reference to the placer's state to be updated by this object.
129129
PlacerState& placer_state_;
130130
///@brief Contains some parameter that determine how the placement cost is computed.

0 commit comments

Comments
 (0)