c42f / tinyformat

Minimal, type safe printf replacement library for C++
537 stars 75 forks source link

Support for POSIX extension of positional arguments #46

Closed jrohel closed 5 years ago

jrohel commented 6 years ago

I was looking for simple formating string support for C++ with the ability to rearrange formating arguments.

The ability to rearrange formatting arguments is an important feature for localization because the word order may vary in different languages.

I found tinyformat but it does not support rearrange formatting arguments. Without this support the tinyformat is not usable in projects where localization is required.

So, I had choices: Search for another library or write new one or improve tinyformat. I decided to improve tinyformat and I made PR #45 wich adds support for POSIX extension of positional arguments.

I think tinyformat will be usable for more users and projects with my PR. Thanks for tinyformat. Have a nice day.

willwray commented 5 years ago

What's the status? Is the PR branch good to go?

c42f commented 5 years ago

Fixed in #45