Doc tidying

This commit is contained in:
Vinnie Falco
2017-07-08 01:30:53 -07:00
parent 288f363fa6
commit 5ed1c98037
2 changed files with 5 additions and 3 deletions

View File

@@ -22,7 +22,9 @@ namespace beast {
of @b File given the platform and build settings.
*/
#if BEAST_DOXYGEN
using file = implementation_defined;
struct file : file_stdio
{
};
#else
#if BEAST_USE_WIN32_FILE
using file = file_win32;

View File

@@ -32,9 +32,9 @@
namespace beast {
/** An implementation of File for Win32.
/** An implementation of File for POSIX systems.
This class implements a @b File using Win32 native interfaces.
This class implements a @b File using POSIX interfaces.
*/
class file_posix
{