replacement.hpp 512 B

123456789101112131415161718
  1. //
  2. // Copyright (c) 2018 Artyom Beilis (Tonkikh)
  3. //
  4. // Distributed under the Boost Software License, Version 1.0.
  5. // https://www.boost.org/LICENSE_1_0.txt
  6. #ifndef BOOST_NOWIDE_REPLACEMENT_HPP_INCLUDED
  7. #define BOOST_NOWIDE_REPLACEMENT_HPP_INCLUDED
  8. /// @file
  9. /// \def BOOST_NOWIDE_REPLACEMENT_CHARACTER
  10. /// Unicode character to be used to replace invalid UTF-8 sequences
  11. #ifndef BOOST_NOWIDE_REPLACEMENT_CHARACTER
  12. #define BOOST_NOWIDE_REPLACEMENT_CHARACTER 0xFFFD
  13. #endif
  14. #endif // boost/nowide/replacement.hpp