[ 83%] Building CXX object test/CMakeFiles/run_all_tests.dir/http.cpp.o
/root/td/test/http.cpp: In member function 'virtual void Test_Http_reader::run()':
/root/td/test/http.cpp:148:7: warning: moving 'a' of type 'td::BufferSlice' to itself [-Wself-move]
148 | a = std::move(a);
| ~~^~~~~~~~~~~~~~
/root/td/test/http.cpp:148:7: note: remove 'std::move' call
/root/td/test/http.cpp:149:7: warning: moving 'b' of type 'td::BufferSlice' to itself [-Wself-move]
149 | b = std::move(b);
| ~~^~~~~~~~~~~~~~
/root/td/test/http.cpp:149:7: note: remove 'std::move' call
[ 83%] Building CXX object test/CMakeFiles/run_all_tests.dir/link.cpp.o
The diagnostics was added in GCC 13 and must be suppressed in the mentioned place in the same way as it has already been done for similar clang warning..
Alpine 3.19 Cmake 3.28.4