Skip to content

Commit

Permalink
build fix attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
ericwa committed Sep 19, 2024
1 parent 68a5b55 commit b2f23f7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/common/polylib.hh
Original file line number Diff line number Diff line change
Expand Up @@ -1295,13 +1295,13 @@ public:
}
};

// fmt support
template<class T>
struct fmt::formatter<winding_base_t<T>> : fmt::ostream_formatter {};

// the default amount of points to keep on stack
constexpr size_t STACK_POINTS_ON_WINDING = MAX_POINTS_ON_WINDING / 4;

using winding_t = winding_base_t<winding_storage_heap_t<double>>;
using winding3f_t = winding_base_t<winding_storage_heap_t<float>>;
}; // namespace polylib

// fmt support
template<class T>
struct fmt::formatter<polylib::winding_base_t<T>> : fmt::ostream_formatter {};

0 comments on commit b2f23f7

Please sign in to comment.