bfgroup / b2

B2 makes it easy to build C++ projects, everywhere.
https://www.bfgroup.xyz/b2/
Boost Software License 1.0
76 stars 228 forks source link

Remove use of sprintf. #328

Closed grafikrobot closed 1 year ago

grafikrobot commented 1 year ago

Proposed changes

Some platforms are now warning on sprintf being unsafe by default. This removes all uses of sprintf for all platforms and replaces them with other built-in methods for conversions or with minimal use of snprintf.

Types of changes

What types of changes does your code introduce?

Further comments

Supersedes https://github.com/bfgroup/b2/pull/240