@@ -144,7 +144,7 @@ struct std::hash<Vector> {
144144
145145template <>
146146struct fmt ::formatter<Vector> : fmt::formatter<std::string> {
147- auto format (Vector v, format_context& ctx) const { return formatter<std::string>::format (v.toString (), ctx); }
147+ auto format (Vector v, format_context& ctx) const /* GCOVR_EXCL_FUNCTION */ { return formatter<std::string>::format (v.toString (), ctx); }
148148};
149149
150150struct FVector {
@@ -196,7 +196,7 @@ struct FVector {
196196
197197template <>
198198struct fmt ::formatter<FVector> : fmt::formatter<std::string> {
199- auto format (FVector v, format_context& ctx) const { return formatter<std::string>::format (v.toString (), ctx); }
199+ auto format (FVector v, format_context& ctx) const /* GCOVR_EXCL_FUNCTION */ { return formatter<std::string>::format (v.toString (), ctx); }
200200};
201201
202202struct Position {
@@ -347,7 +347,7 @@ struct std::hash<std::pair<Position, Position>> {
347347
348348template <>
349349struct fmt ::formatter<Position> : fmt::formatter<std::string> {
350- auto format (Position v, format_context& ctx) const { return formatter<std::string>::format (v.toString (), ctx); }
350+ auto format (Position v, format_context& ctx) const /* GCOVR_EXCL_FUNCTION */ { return formatter<std::string>::format (v.toString (), ctx); }
351351};
352352
353353struct FPosition {
@@ -402,7 +402,7 @@ inline bool areaWithinArea(FPosition area1Small, FPosition area1Large, FPosition
402402
403403template <>
404404struct fmt ::formatter<FPosition> : fmt::formatter<std::string> {
405- auto format (FPosition v, format_context& ctx) const { return formatter<std::string>::format (v.toString (), ctx); }
405+ auto format (FPosition v, format_context& ctx) const /* GCOVR_EXCL_FUNCTION */ { return formatter<std::string>::format (v.toString (), ctx); }
406406};
407407
408408struct Size {
@@ -447,7 +447,7 @@ struct Size {
447447
448448template <>
449449struct fmt ::formatter<Size> : fmt::formatter<std::string> {
450- auto format (Size v, format_context& ctx) const { return formatter<std::string>::format (v.toString (), ctx); }
450+ auto format (Size v, format_context& ctx) const /* GCOVR_EXCL_FUNCTION */ { return formatter<std::string>::format (v.toString (), ctx); }
451451};
452452
453453class Size ::Iterator {
@@ -562,7 +562,7 @@ struct FSize {
562562
563563template <>
564564struct fmt ::formatter<FSize> : fmt::formatter<std::string> {
565- auto format (FSize v, format_context& ctx) const { return formatter<std::string>::format (v.toString (), ctx); }
565+ auto format (FSize v, format_context& ctx) const /* GCOVR_EXCL_FUNCTION */ { return formatter<std::string>::format (v.toString (), ctx); }
566566};
567567
568568// conversion
@@ -583,7 +583,7 @@ enum Rotation : std::uint8_t {
583583
584584template <>
585585struct fmt ::formatter<Rotation> : fmt::formatter<std::string> {
586- auto format (Rotation v, format_context& ctx) const {
586+ auto format (Rotation v, format_context& ctx) const /* GCOVR_EXCL_FUNCTION */ {
587587 switch (v) {
588588 case Rotation::TWO_SEVENTY: return " TWO_SEVENTY" ;
589589 case Rotation::ONE_EIGHTY: return " ONE_EIGHTY" ;
@@ -739,7 +739,7 @@ struct Orientation {
739739
740740template <>
741741struct fmt ::formatter<Orientation> : fmt::formatter<std::string> {
742- auto format (Orientation o, format_context& ctx) const { return formatter<std::string>::format (o.toString (), ctx); }
742+ auto format (Orientation o, format_context& ctx) const /* GCOVR_EXCL_FUNCTION */ { return formatter<std::string>::format (o.toString (), ctx); }
743743};
744744
745745#endif /* position_h */
0 commit comments