schmouk / CppBMPLoader

An exhaustive BMP Loader, MIT-licensed, implemented for c11 and c20
MIT License
0 stars 0 forks source link

use `std::format` rather than `std::strstream` #143

Closed schmouk closed 1 hour ago

schmouk commented 3 hours ago

std::strstream is deprecated since c++17. Let's use std::format instead in cpp-20 version of the library.

schmouk commented 1 hour ago

Completed.Validated.