replaced special character which caused warning C4819 with other system encoding

pull/161/head
Enrico Pisko 2016-04-25 10:16:59 +02:00
parent dfac7ec28b
commit 90748eb3c2
2 changed files with 2 additions and 2 deletions

2
misc.h
View File

@ -439,7 +439,7 @@ template <class T1, class T2> inline const T1 UnsignedMin(const T1& a, const T2&
return (T1)b < a ? (T1)b : a; return (T1)b < a ? (T1)b : a;
} }
//! \brief Tests whether a conversion from to is safe to perform //! \brief Tests whether a conversion from -> to is safe to perform
//! \param from the first value //! \param from the first value
//! \param to the second value //! \param to the second value
//! \returns true if its safe to convert from into to, false otherwise. //! \returns true if its safe to convert from into to, false otherwise.

View File

@ -31,7 +31,7 @@ public:
}; };
//! \class member_ptr //! \class member_ptr
//! \brief Pointer that overloads operator //! \brief Pointer that overloads operator ->
//! \tparam T class or type //! \tparam T class or type
//! \details member_ptr is used frequently in the library to avoid the issues related to //! \details member_ptr is used frequently in the library to avoid the issues related to
//! std::auto_ptr in C++11 (deprecated) and std::unique_ptr in C++03 (non-existent). //! std::auto_ptr in C++11 (deprecated) and std::unique_ptr in C++03 (non-existent).