Code style and comments

This commit is contained in:
jqdg 2021-09-12 11:50:53 -07:00 committed by Lukas Dürrenberger
parent 85e72faf5e
commit 3b1ff125b0
2 changed files with 6 additions and 2 deletions

View File

@ -58,7 +58,7 @@ public:
AutoreleasePool();
////////////////////////////////////////////////////////////
/// \brief Destructor. Drains the autorelease pool.
/// \brief Drain the autorelease pool.
///
////////////////////////////////////////////////////////////
~AutoreleasePool();

View File

@ -53,7 +53,11 @@ namespace priv
{
////////////////////////////////////////////////////////////
CursorImpl::CursorImpl() : m_cursor(nil) {}
CursorImpl::CursorImpl() :
m_cursor(nil)
{
}
////////////////////////////////////////////////////////////