Update CI to use clang-tidy 14 (#6353)

This commit is contained in:
Siarhei Fedartsou
2022-08-31 23:39:47 +02:00
committed by GitHub
parent c003ac1055
commit 96f5780f06
22 changed files with 24 additions and 35 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ class RasterGrid
for (unsigned int y = 0; y < ydim; y++)
{
// read one line from file.
file_reader.ReadLine(&buffer[0], xdim * 11);
file_reader.ReadLine(buffer.data(), xdim * 11);
boost::algorithm::trim(buffer);
std::vector<std::string> result;