]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Qualify more things with std::. 18238/head
authorWolfgang Bangerth <bangerth@colostate.edu>
Tue, 11 Mar 2025 13:51:48 +0000 (07:51 -0600)
committerWolfgang Bangerth <bangerth@colostate.edu>
Thu, 13 Mar 2025 00:08:47 +0000 (18:08 -0600)
include/deal.II/matrix_free/portable_matrix_free.templates.h
source/base/data_out_base.cc
source/base/exceptions.cc
source/base/init_finalize.cc
source/base/path_search.cc
source/base/polynomials_pyramid.cc
source/grid/cell_id.cc
source/grid/grid_generator.cc
source/grid/grid_in.cc
source/grid/grid_tools.cc

index 3903861aa768013680a04bfc755ad0ee52b9f2fe..1e411c09eb91542cd4f6713afaa6671191c941e4 100644 (file)
@@ -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,
index 293c87a2d3de6b5598b30bf8a3d06c0db834956c..f28a3529ff7488617fc0757242609ed7c87c587b 100644 (file)
@@ -5455,7 +5455,7 @@ namespace DataOutBase
       o << "    <DataArray type=\"Int32\" Name=\"connectivity\" format=\""
         << ascii_or_binary << "\">\n";
 
-      std::vector<int32_t> cells;
+      std::vector<std::int32_t> cells;
       Assert(dim <= 3, ExcNotImplemented());
 
       unsigned int first_vertex_of_patch = 0;
@@ -5782,7 +5782,7 @@ namespace DataOutBase
         o << "    <DataArray type=\"Int32\" Name=\"offsets\" format=\""
           << ascii_or_binary << "\">\n";
 
-        std::vector<int32_t> offsets;
+        std::vector<std::int32_t> 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<uint8_t> cell_types_uint8_t(cell_types.size());
+            std::vector<std::uint8_t> cell_types_uint8_t(cell_types.size());
             for (unsigned int i = 0; i < cell_types.size(); ++i)
               cell_types_uint8_t[i] = static_cast<std::uint8_t>(cell_types[i]);
 
index f3c8407ab852beca90c6a68fb337b78020d3f884..3518861656e257d362a8c0f5c67040277420317a 100644 (file)
@@ -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;
 }
 
index c23c73c8ec374234e9d4954ee456a3e166917510..876f1359b3e876ddd5129c957c2562fe42bff386 100644 (file)
@@ -277,7 +277,7 @@ InitFinalize::InitFinalize([[maybe_unused]] int    &argc,
       // flag.
       std::vector<char *> 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;
index f340b1c3f7269884346cdf9203bed68d24474591..a886ba551be9ec1a55f090a296d443609388fa84 100644 (file)
@@ -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;
             }
         }
index a04090f1bc334b1643a5301633bd73367cf19747..871c08bf75f94171d3a48a4c6ca06c19af3c0be4 100644 (file)
@@ -61,7 +61,7 @@ ScalarLagrangePolynomialPyramid<dim>::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<dim>::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);
index 47a41642efb3d51ec1898455154a2cbec09a6775..6f6e1bbc2ef9cd1d5131c486675dce87243f66f6 100644 (file)
@@ -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);
 }
 
 
index b2954e83da77105e777d929b3c43fb05541547bc..4aeb3b5dc88dc973cfecc0bab609ce471a116349 100644 (file)
@@ -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<double> zeta(chi, eta);
               const std::complex<double> z = zeta + 1. / zeta;
 
-              joukowski_points[i] = {real(z), imag(z)};
+              joukowski_points[i] = {std::real(z), std::imag(z)};
             }
           return joukowski_points;
         }
index 37dc82eb673b52780d0ec61eedb4360355793f76..0b3098ba8ea3d846ce5e424f0a143a81888b6924 100644 (file)
@@ -3060,7 +3060,10 @@ GridIn<dim, spacedim>::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<int (*)(int)>(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<int (*)(int)>(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<int (*)(int)>(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<int (*)(int)>(std::toupper));
 
                 // Surface can be created from ELSET, or directly from cells
                 // If elsets_list contains a key with specific name - refers
index 5594f47c44a4863053f73a6d61e1648ed711f4be..a15405cb37e821d5e7b2b338ccb4bc7ceb729bed 100644 (file)
@@ -1971,7 +1971,7 @@ namespace GridTools
       if (cell->is_active())
         {
           while (current_cell_idx >=
-                 std::floor(static_cast<uint_least64_t>(n_active_cells) *
+                 std::floor(static_cast<std::uint_least64_t>(n_active_cells) *
                             (current_proc_idx + 1) / n_partitions))
             ++current_proc_idx;
           cell->set_subdomain_id(current_proc_idx);

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.