1 .. title:: clang-tidy - boost-use-to-string
6 This check finds conversion from integer type like ``int`` to ``std::string`` or
7 ``std::wstring`` using ``boost::lexical_cast``, and replace it with calls to
8 ``std::to_string`` and ``std::to_wstring``.
10 It doesn't replace conversion from floating points despite the ``to_string``
11 overloads, because it would change the behavior.
16 auto str = boost::lexical_cast<std::string>(42);
17 auto wstr = boost::lexical_cast<std::wstring>(2137LL);
20 auto str = std::to_string(42);
21 auto wstr = std::to_wstring(2137LL);