Skip to content

Commit

Permalink
fix BrainFlowInputParams less operator (#569)
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacplotkin committed Oct 20, 2022
1 parent 4589e74 commit ece814f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/board_controller/inc/brainflow_input_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ struct BrainFlowInputParams
bool operator< (const struct BrainFlowInputParams &other) const
{
return std::tie (serial_port, mac_address, ip_address, ip_port, ip_protocol, other_info,
timeout, serial_number, file, preset,
master_board) < std::tie (other.serial_port, other.mac_address, other.ip_address,
other.ip_port, other.ip_protocol, other.other_info, timeout,
serial_number, file, preset, master_board);
timeout, serial_number, file, preset, master_board) <
std::tie (other.serial_port, other.mac_address, other.ip_address, other.ip_port,
other.ip_protocol, other.other_info, other.timeout, other.serial_number, other.file,
other.preset, other.master_board);
}

bool operator> (const struct BrainFlowInputParams &other) const
Expand Down

0 comments on commit ece814f

Please sign in to comment.