diff --git a/bsplines__non__uniform_8hpp_source.html b/bsplines__non__uniform_8hpp_source.html
index 96a8627ba..0c9951db0 100644
--- a/bsplines__non__uniform_8hpp_source.html
+++ b/bsplines__non__uniform_8hpp_source.html
@@ -775,7 +775,7 @@
655 for (
int k = 1; k <
int(n + 1); ++k) {
- 656 for (std::size_t i = 0; i < derivs.extent(0); i++) {
+ 656 for (std::size_t i = 0; i < derivs.extent(0); ++i) {
diff --git a/fft_8hpp_source.html b/fft_8hpp_source.html
index d2b7a333d..42998b5f3 100644
--- a/fft_8hpp_source.html
+++ b/fft_8hpp_source.html
@@ -536,7 +536,7 @@
414 std::array<
int,
sizeof...(DDimX)> n = {
static_cast<
int>(
ddc::get<DDimX>(mesh.extents()))...};
- 417 for (std::size_t i = 0; i <
sizeof...(DDimX); i++) {
+ 417 for (std::size_t i = 0; i <
sizeof...(DDimX); ++i) {
418 idist = transform_type_v<Tin, Tout> == TransformType::C2R && i ==
sizeof...(DDimX) - 1
419 ? idist * (n[i] / 2 + 1)
diff --git a/greville__interpolation__points_8hpp_source.html b/greville__interpolation__points_8hpp_source.html
index 4e5fd14db..0c08c3f71 100644
--- a/greville__interpolation__points_8hpp_source.html
+++ b/greville__interpolation__points_8hpp_source.html
@@ -219,7 +219,7 @@
97 while (greville_points[npoints] <
ddc::discrete_space<BSplines>().rmin()) {
99 = greville_points[npoints] +
ddc::discrete_space<BSplines>().length();
-
+
103 for (std::size_t i = 0; i <
ddc::discrete_space<BSplines>().nbasis() - npoints; ++i) {
diff --git a/spline__builder_8hpp_source.html b/spline__builder_8hpp_source.html
index 584332289..05d976b89 100644
--- a/spline__builder_8hpp_source.html
+++ b/spline__builder_8hpp_source.html
@@ -1006,7 +1006,7 @@
886 KOKKOS_LAMBDA(
typename batch_domain_type::discrete_element_type
const j) {
- 887 for (std::size_t i = 0; i < nbasis_proxy; i++) {
+ 887 for (std::size_t i = 0; i < nbasis_proxy; ++i) {
888 spline_tr(
ddc::DiscreteElement<bsplines_type>(i), j)
889 = spline(
ddc::DiscreteElement<bsplines_type>(i + offset_proxy), j);
@@ -1024,7 +1024,7 @@
904 KOKKOS_LAMBDA(
typename batch_domain_type::discrete_element_type
const j) {
- 905 for (std::size_t i = 0; i < nbasis_proxy; i++) {
+ 905 for (std::size_t i = 0; i < nbasis_proxy; ++i) {
906 spline(
ddc::DiscreteElement<bsplines_type>(i + offset_proxy), j)
907 = spline_tr(
ddc::DiscreteElement<bsplines_type>(i), j);
diff --git a/splines__linear__problem__2x2__blocks_8hpp_source.html b/splines__linear__problem__2x2__blocks_8hpp_source.html
index 5f636bba6..7cbc10080 100644
--- a/splines__linear__problem__2x2__blocks_8hpp_source.html
+++ b/splines__linear__problem__2x2__blocks_8hpp_source.html
@@ -332,8 +332,8 @@
211 Kokkos::RangePolicy(ExecSpace(), 0, 1),
212 KOKKOS_LAMBDA(
const int) {
- 213 for (
int i = 0; i < dense_matrix.extent(0); i++) {
- 214 for (
int j = 0; j < dense_matrix.extent(1); j++) {
+ 213 for (
int i = 0; i < dense_matrix.extent(0); ++i) {
+ 214 for (
int j = 0; j < dense_matrix.extent(1); ++j) {
215 double const aij = dense_matrix(i, j);
216 if (Kokkos::abs(aij) >= tol) {
217 rows_idx(n_nonzeros.d_view()) = i;