From e6d95ee2b36964c3e9145af7cca75e4227fff3d0 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 11 Mar 2025 07:51:48 -0600 Subject: [PATCH] Qualify more things with std::. --- .../matrix_free/portable_matrix_free.templates.h | 2 +- source/base/data_out_base.cc | 6 +++--- source/base/exceptions.cc | 4 ++-- source/base/init_finalize.cc | 2 +- source/base/path_search.cc | 8 ++++---- source/base/polynomials_pyramid.cc | 4 ++-- source/grid/cell_id.cc | 2 +- source/grid/grid_generator.cc | 7 ++++--- source/grid/grid_in.cc | 16 +++++++++++----- source/grid/grid_tools.cc | 2 +- 10 files changed, 30 insertions(+), 23 deletions(-) diff --git a/include/deal.II/matrix_free/portable_matrix_free.templates.h b/include/deal.II/matrix_free/portable_matrix_free.templates.h index 3903861aa7..1e411c09eb 100644 --- a/include/deal.II/matrix_free/portable_matrix_free.templates.h +++ b/include/deal.II/matrix_free/portable_matrix_free.templates.h @@ -369,7 +369,7 @@ namespace Portable // Provide the shared memory capacity. This function takes the team_size // as an argument, which allows team_size dependent allocations. - size_t + std::size_t team_shmem_size(int /*team_size*/) const { return SharedViewValues::shmem_size(Functor::n_q_points, diff --git a/source/base/data_out_base.cc b/source/base/data_out_base.cc index 293c87a2d3..f28a3529ff 100644 --- a/source/base/data_out_base.cc +++ b/source/base/data_out_base.cc @@ -5455,7 +5455,7 @@ namespace DataOutBase o << " \n"; - std::vector cells; + std::vector cells; Assert(dim <= 3, ExcNotImplemented()); unsigned int first_vertex_of_patch = 0; @@ -5782,7 +5782,7 @@ namespace DataOutBase o << " \n"; - std::vector offsets; + std::vector offsets; offsets.reserve(n_cells); // std::uint8_t might be an alias to unsigned char which is then not @@ -5817,7 +5817,7 @@ namespace DataOutBase if (deal_ii_with_zlib && (flags.compression_level != CompressionLevel::plain_text)) { - std::vector cell_types_uint8_t(cell_types.size()); + std::vector cell_types_uint8_t(cell_types.size()); for (unsigned int i = 0; i < cell_types.size(); ++i) cell_types_uint8_t[i] = static_cast(cell_types[i]); diff --git a/source/base/exceptions.cc b/source/base/exceptions.cc index f3c8407ab8..3518861656 100644 --- a/source/base/exceptions.cc +++ b/source/base/exceptions.cc @@ -319,7 +319,7 @@ ExceptionBase::print_stack_trace(std::ostream &out) const else demangled_stacktrace_entry += functionname; - free(p); + std::free(p); #else @@ -334,7 +334,7 @@ ExceptionBase::print_stack_trace(std::ostream &out) const break; } - free(stacktrace); // free(nullptr) is allowed + std::free(stacktrace); // free(nullptr) is allowed stacktrace = nullptr; } diff --git a/source/base/init_finalize.cc b/source/base/init_finalize.cc index c23c73c8ec..876f1359b3 100644 --- a/source/base/init_finalize.cc +++ b/source/base/init_finalize.cc @@ -277,7 +277,7 @@ InitFinalize::InitFinalize([[maybe_unused]] int &argc, // flag. std::vector argv_new; for (auto *const arg : make_array_view(&argv[0], &argv[0] + argc)) - if (strcmp(arg, "--help") != 0) + if (std::strcmp(arg, "--help") != 0) argv_new.push_back(arg); std::stringstream threads_flag; diff --git a/source/base/path_search.cc b/source/base/path_search.cc index f340b1c3f7..a886ba551b 100644 --- a/source/base/path_search.cc +++ b/source/base/path_search.cc @@ -133,13 +133,13 @@ PathSearch::find(const std::string &filename, if (debug > 1) deallog << "PathSearch[" << cls << "] trying " << real_name << std::endl; - FILE *fp = fopen(real_name.c_str(), open_mode); + std::FILE *fp = std::fopen(real_name.c_str(), open_mode); if (fp != nullptr) { if (debug > 0) deallog << "PathSearch[" << cls << "] opened " << real_name << std::endl; - fclose(fp); + std::fclose(fp); return real_name; } } @@ -152,13 +152,13 @@ PathSearch::find(const std::string &filename, if (debug > 1) deallog << "PathSearch[" << cls << "] trying " << real_name << std::endl; - FILE *fp = fopen(real_name.c_str(), open_mode); + std::FILE *fp = std::fopen(real_name.c_str(), open_mode); if (fp != nullptr) { if (debug > 0) deallog << "PathSearch[" << cls << "] opened " << real_name << std::endl; - fclose(fp); + std::fclose(fp); return real_name; } } diff --git a/source/base/polynomials_pyramid.cc b/source/base/polynomials_pyramid.cc index a04090f1bc..871c08bf75 100644 --- a/source/base/polynomials_pyramid.cc +++ b/source/base/polynomials_pyramid.cc @@ -61,7 +61,7 @@ ScalarLagrangePolynomialPyramid::compute_value(const unsigned int i, const double s = p[1]; const double t = p[2]; - if (fabs(t - 1.0) > 1.0e-14) + if (std::fabs(t - 1.0) > 1.0e-14) { ration = (r * s * t) / (1.0 - t); } @@ -106,7 +106,7 @@ ScalarLagrangePolynomialPyramid::compute_grad(const unsigned int i, double rationds; double rationdt; - if (fabs(t - 1.0) > 1.0e-14) + if (std::fabs(t - 1.0) > 1.0e-14) { rationdr = s * t / (1.0 - t); rationds = r * t / (1.0 - t); diff --git a/source/grid/cell_id.cc b/source/grid/cell_id.cc index 47a41642ef..6f6e1bbc2e 100644 --- a/source/grid/cell_id.cc +++ b/source/grid/cell_id.cc @@ -53,7 +53,7 @@ CellId::CellId(const types::coarse_cell_id coarse_cell_id, , n_child_indices(n_child_indices) { Assert(n_child_indices < child_indices.size(), ExcInternalError()); - memcpy(child_indices.data(), id, n_child_indices); + std::memcpy(child_indices.data(), id, n_child_indices); } diff --git a/source/grid/grid_generator.cc b/source/grid/grid_generator.cc index b2954e83da..4aeb3b5dc8 100644 --- a/source/grid/grid_generator.cc +++ b/source/grid/grid_generator.cc @@ -536,8 +536,9 @@ namespace GridGenerator const double theta = 2 * numbers::PI / number_points; // first point is leading edge then counterclockwise for (unsigned int i = 0; i < number_points; ++i) - circle_points.emplace_back(center[0] - radius * cos(i * theta), - center[1] - radius * sin(i * theta)); + circle_points.emplace_back(center[0] - radius * std::cos(i * theta), + center[1] - + radius * std::sin(i * theta)); return circle_points; } @@ -563,7 +564,7 @@ namespace GridGenerator const std::complex zeta(chi, eta); const std::complex z = zeta + 1. / zeta; - joukowski_points[i] = {real(z), imag(z)}; + joukowski_points[i] = {std::real(z), std::imag(z)}; } return joukowski_points; } diff --git a/source/grid/grid_in.cc b/source/grid/grid_in.cc index 37dc82eb67..0b3098ba8e 100644 --- a/source/grid/grid_in.cc +++ b/source/grid/grid_in.cc @@ -3060,7 +3060,10 @@ GridIn::parse_tecplot_header( blocked = false; // convert the string to upper case - std::transform(header.begin(), header.end(), header.begin(), ::toupper); + std::transform(header.begin(), + header.end(), + header.begin(), + static_cast(std::toupper)); // replace all tabs, commas, newlines by // whitespaces @@ -3672,7 +3675,7 @@ namespace std::transform(type_name_2.begin(), type_name_2.end(), type_name_2.begin(), - [](unsigned char c) { return std::toupper(c); }); + static_cast(std::toupper)); const std::string numbers = "0123456789"; type_name_2.erase(std::find_first_of(type_name_2.begin(), type_name_2.end(), @@ -4473,7 +4476,7 @@ namespace std::string tmp; for (const char c : s) { - if (isdigit(c) != 0) + if (std::isdigit(c) != 0) { tmp += c; } @@ -4500,7 +4503,10 @@ namespace while (std::getline(input_stream, line)) { cont: - std::transform(line.begin(), line.end(), line.begin(), ::toupper); + std::transform(line.begin(), + line.end(), + line.begin(), + static_cast(std::toupper)); if (line.compare("*HEADING") == 0 || line.compare(0, 2, "**") == 0 || line.compare(0, 5, "*PART") == 0) @@ -4620,7 +4626,7 @@ namespace std::transform(line.begin(), line.end(), line.begin(), - ::toupper); + static_cast(std::toupper)); // Surface can be created from ELSET, or directly from cells // If elsets_list contains a key with specific name - refers diff --git a/source/grid/grid_tools.cc b/source/grid/grid_tools.cc index 5594f47c44..a15405cb37 100644 --- a/source/grid/grid_tools.cc +++ b/source/grid/grid_tools.cc @@ -1971,7 +1971,7 @@ namespace GridTools if (cell->is_active()) { while (current_cell_idx >= - std::floor(static_cast(n_active_cells) * + std::floor(static_cast(n_active_cells) * (current_proc_idx + 1) / n_partitions)) ++current_proc_idx; cell->set_subdomain_id(current_proc_idx); -- 2.39.5