Skip to content

Commit

Permalink
insert missing return keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Stahl committed Feb 18, 2020
1 parent 885c259 commit b25642c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python_bind.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,11 @@ py::array gpuRIR_bind::gpu_conv(py::array_t<float, py::array::c_style> source_se
}

bool gpuRIR_bind::activate_mixed_precision_bind(bool activate) {
gpuRIR_cuda_simulator.activate_mixed_precision(activate);
return gpuRIR_cuda_simulator.activate_mixed_precision(activate);
}

bool gpuRIR_bind::activate_lut_bind(bool activate) {
gpuRIR_cuda_simulator.activate_lut(activate);
return gpuRIR_cuda_simulator.activate_lut(activate);
}


Expand Down

0 comments on commit b25642c

Please sign in to comment.