Comment fixes and clarifications

This commit is contained in:
Crzyrndm 2018-06-09 12:39:58 +12:00
parent b95919323d
commit 9a82c4fab7

View File

@ -64,17 +64,17 @@ public:
worksheet_iterator(const worksheet_iterator &) = default; worksheet_iterator(const worksheet_iterator &) = default;
/// <summary> /// <summary>
/// Assigns the iterator so that it points to the same worksheet in the same workbook. /// Copy assigns the iterator so that it points to the same worksheet in the same workbook.
/// </summary> /// </summary>
worksheet_iterator &operator=(const worksheet_iterator &) = default; worksheet_iterator &operator=(const worksheet_iterator &) = default;
/// <summary> /// <summary>
/// Copy constructs a worksheet iterator from another iterator. /// Move constructs a worksheet iterator from a temporary iterator.
/// </summary> /// </summary>
worksheet_iterator(worksheet_iterator &&) = default; worksheet_iterator(worksheet_iterator &&) = default;
/// <summary> /// <summary>
/// Assigns the iterator so that it points to the same worksheet in the same workbook. /// Move assign the iterator from a temporary iterator
/// </summary> /// </summary>
worksheet_iterator &operator=(worksheet_iterator &&) = default; worksheet_iterator &operator=(worksheet_iterator &&) = default;
@ -170,17 +170,17 @@ public:
const_worksheet_iterator(const const_worksheet_iterator &) = default; const_worksheet_iterator(const const_worksheet_iterator &) = default;
/// <summary> /// <summary>
/// Assigns the iterator so that it points to the same worksheet in the same workbook. /// Copy assigns the iterator so that it points to the same worksheet in the same workbook.
/// </summary> /// </summary>
const_worksheet_iterator &operator=(const const_worksheet_iterator &) = default; const_worksheet_iterator &operator=(const const_worksheet_iterator &) = default;
/// <summary> /// <summary>
/// Move constructs a worksheet iterator from another iterator. /// Move constructs a worksheet iterator from a temporary iterator.
/// </summary> /// </summary>
const_worksheet_iterator(const_worksheet_iterator &&) = default; const_worksheet_iterator(const_worksheet_iterator &&) = default;
/// <summary> /// <summary>
/// Assigns the iterator from a temporary /// Move assigns the iterator from a temporary iterator
/// </summary> /// </summary>
const_worksheet_iterator &operator=(const_worksheet_iterator &&) = default; const_worksheet_iterator &operator=(const_worksheet_iterator &&) = default;