diff --git a/misc.h b/misc.h index b27c79ff..8382cf59 100644 --- a/misc.h +++ b/misc.h @@ -439,7 +439,7 @@ template inline const T1 UnsignedMin(const T1& a, const T2& 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 to the second value //! \returns true if its safe to convert from into to, false otherwise. diff --git a/smartptr.h b/smartptr.h index cbacb79f..8bb32bc0 100644 --- a/smartptr.h +++ b/smartptr.h @@ -31,7 +31,7 @@ public: }; //! \class member_ptr -//! \brief Pointer that overloads operator→ +//! \brief Pointer that overloads operator -> //! \tparam T class or type //! \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).