From eb599938082925dfd11aad8d73f81cfddaaf7b2e Mon Sep 17 00:00:00 2001 From: CCXXXI Date: Fri, 24 Apr 2026 17:56:13 +0800 Subject: [PATCH] Fix incorrect extended_int chunk size in Voronoi Builder documentation In the example code for `voronoi_builder_traits`, `big_int_type` is incorrectly typed as `extended_int<128>`. It should be `extended_int<64>`. See: https://github.com/boostorg/polygon/blob/ddb9c8adadbbb539fe52cb7f8ee0a446ba5ead04/include/boost/polygon/detail/voronoi_ctypes.hpp#L632 --- doc/voronoi_builder.htm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/voronoi_builder.htm b/doc/voronoi_builder.htm index 042703e3..05d3aff7 100644 --- a/doc/voronoi_builder.htm +++ b/doc/voronoi_builder.htm @@ -199,7 +199,7 @@

Voronoi Coordinate Type Traits

    typedef int32 int_type;
    typedef int64 int_x2_type;
    typedef uint64 uint_x2_type;
-    typedef extended_int<128> big_int_type;
+    typedef extended_int<64> big_int_type;
    typedef fpt64 fpt_type;
    typedef extended_exponent_fpt<fpt_type> efpt_type;
@@ -314,7 +314,7 @@

Voronoi Coordinate Type Traits

Copyright: - Copyright © Andrii Sydorchuk 2010-2013. + Copyright © Andrii Sydorchuk 2010-2013. License: @@ -329,4 +329,4 @@

Voronoi Coordinate Type Traits

- \ No newline at end of file +