replacement.hpp 563 B

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