Skip to content

Commit

Permalink
removed double const
Browse files Browse the repository at this point in the history
  • Loading branch information
nils1603 committed Apr 26, 2024
1 parent 205773a commit ef8bc49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/hal_core/netlist/netlist_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ namespace hal
* @param[in] output_pin - The output pin through which the carries must be connected.
* @returns A vector of vector of gates that form a chain on success, an error otherwise.
*/
CORE_API Result<std::vector<std::vector<Gate*>>> find_carry_chains(const Netlist* nl, const const std::string input_pins, const const std::string output_pins);
CORE_API Result<std::vector<std::vector<Gate*>>> find_carry_chains(const Netlist* nl, const std::string input_pins, const std::string output_pins);

/**
* Find a sequence of identical gates that are connected via the specified input and output pins.
Expand Down

0 comments on commit ef8bc49

Please sign in to comment.