remove trailing comma in enum

This commit is contained in:
Andreas Fabri 2015-04-25 16:09:11 +02:00
parent eee44a4a2d
commit bc0f479080
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ enum Barycentric_coordinate_type
/// if the coordinate has no non-zero weight, and they all sum to 1
BARYCENTRIC_COORDINATE_INSIDE,
/// if the weights of the coordinate do not sum to 1
BARYCENTRIC_COORDINATE_OUTSIDE,
BARYCENTRIC_COORDINATE_OUTSIDE
};
template <class B, class Construct_barycentric_coordinate_weight>