taekahn

Results 2 issues of taekahn

When compiling under GCC 11.2.0 with `-std=c++20` the following line causes an error. https://github.com/census-instrumentation/opencensus-cpp/blob/afe0460f92fb78e6d6cf8c8a30ced9bc5e2e57d3/opencensus/common/internal/stats_object.h#L81 The specific error: ``` external/io_opencensus_cpp/opencensus/common/internal/stats_object.h:81:26: error: expected ')' before 'num_stats' 81 | StatsObject(uint16_t num_stats, absl::Duration interval,...

Problem: Math.random produces uniformly distributed numbers within the range of (0, 1], but trying to map those values integer range with `Math.floor(Math.random() * pieces.numSides)` leads to slightly biased results. Solution:...