Skip to content

Commit 95e8698

Browse files
committed
Fix doxygen comments on checksum policies
Issue mentioned in #76
1 parent b5b7661 commit 95e8698

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

include/E57Format.h

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,14 @@ namespace e57
9393
//! an ImageFile (0-100%).
9494
using ReadChecksumPolicy = int;
9595

96-
constexpr ReadChecksumPolicy CHECKSUM_POLICY_NONE = 0; //! Do not verify the checksums. (fast)
97-
constexpr ReadChecksumPolicy CHECKSUM_POLICY_SPARSE =
98-
25; //! Only verify 25% of the checksums. The last block is always verified.
99-
constexpr ReadChecksumPolicy CHECKSUM_POLICY_HALF =
100-
50; //! Only verify 50% of the checksums. The last block is always verified.
101-
constexpr ReadChecksumPolicy CHECKSUM_POLICY_ALL = 100; //! Verify all checksums. This is the default. (slow)
96+
//! Do not verify the checksums. (fast)
97+
constexpr ReadChecksumPolicy CHECKSUM_POLICY_NONE = 0;
98+
//! Only verify 25% of the checksums. The last block is always verified.
99+
constexpr ReadChecksumPolicy CHECKSUM_POLICY_SPARSE = 25;
100+
//! Only verify 50% of the checksums. The last block is always verified.
101+
constexpr ReadChecksumPolicy CHECKSUM_POLICY_HALF = 50;
102+
//! Verify all checksums. This is the default. (slow)
103+
constexpr ReadChecksumPolicy CHECKSUM_POLICY_ALL = 100;
102104

103105
//! @brief The URI of ASTM E57 v1.0 standard XML namespace
104106
//! Note that even though this URI does not point to a valid document, the standard (section 8.4.2.3)

0 commit comments

Comments
 (0)