Improve doc

This commit is contained in:
Martchus 2016-07-27 18:16:04 +02:00
parent 189a6fe6ba
commit ec53cf339d
3 changed files with 8 additions and 3 deletions

View File

@ -72,7 +72,7 @@ namespace ConversionUtilities
{ {
/*! /*!
* \brief Encapsulates functions using the big endian byte order. * \brief Encapsulates binary conversion functions using the big endian byte order.
* \sa <a href="http://en.wikipedia.org/wiki/Endianness">Endianness - Wikipedia</a> * \sa <a href="http://en.wikipedia.org/wiki/Endianness">Endianness - Wikipedia</a>
*/ */
namespace BE { namespace BE {
@ -88,7 +88,7 @@ namespace BE {
} }
/*! /*!
* \brief Encapsulates functions using the little endian byte order. * \brief Encapsulates binary conversion functions using the little endian byte order.
* \sa <a href="http://en.wikipedia.org/wiki/Endianness">Endianness - Wikipedia</a> * \sa <a href="http://en.wikipedia.org/wiki/Endianness">Endianness - Wikipedia</a>
*/ */
namespace LE { namespace LE {

View File

@ -6,7 +6,8 @@
#include <ostream> #include <ostream>
/*! /*!
* \brief Encapsulates ANSI escape codes. * \brief Encapsulates functions for formatted terminal output using ANSI escape codes.
* \remarks The functions haven't been tested yet and are still experimental. API/ABI might change in next minor release.
*/ */
namespace EscapeCodes { namespace EscapeCodes {

View File

@ -3,6 +3,8 @@
#include <memory> #include <memory>
/// \cond
#if __cplusplus <= 201103L #if __cplusplus <= 201103L
#define __cpp_lib_make_unique 201304 #define __cpp_lib_make_unique 201304
namespace std { namespace std {
@ -37,5 +39,7 @@ namespace std {
} }
#endif #endif
/// \endcond
#endif // MEMORY_H #endif // MEMORY_H