Skip to content

Commit

Permalink
Merge pull request LAStools#70 from Jean-Romain/Jean-Romain-patch-2
Browse files Browse the repository at this point in the history
Fix warning -Wself-assign-field
  • Loading branch information
rapidlasso authored Apr 26, 2019
2 parents 61f3e48 + 8802e2e commit 35529a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LASlib/src/lastransform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ class LASoperationClassifyAttributeBetweenAs : public LASoperation
point->set_extended_classification(class_to);
}
};
LASoperationClassifyAttributeBetweenAs(U32 index, F64 z_below, F64 z_above, U8 class_to) { this->index = index; this->below = below; this->above = above; this->class_to = class_to; };
LASoperationClassifyAttributeBetweenAs(U32 index, F64 z_below, F64 z_above, U8 class_to) { this->index = index; this->below = z_below; this->above = z_above; this->class_to = class_to; };
private:
U32 index;
F64 below;
Expand Down

0 comments on commit 35529a4

Please sign in to comment.