Skip to content

Commit f7a6654

Browse files
committed
Fix DiffusionGrid::GetConcentration error label
1 parent 4f87d38 commit f7a6654

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/core/diffusion/diffusion_grid.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ real_t DiffusionGrid::GetValue(const Real3& position) const {
406406
/// Get the concentration at specified voxel
407407
real_t DiffusionGrid::GetConcentration(const size_t idx) const {
408408
if (idx >= total_num_boxes_) {
409-
Log::Error("DiffusionGrid::ChangeConcentrationBy",
409+
Log::Error("DiffusionGrid::GetConcentration",
410410
"You tried to get the concentration outside the bounds of "
411411
"the diffusion grid!");
412412
return 0;

0 commit comments

Comments
 (0)