File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -93,12 +93,14 @@ namespace e57
93
93
// ! an ImageFile (0-100%).
94
94
using ReadChecksumPolicy = int ;
95
95
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 ;
102
104
103
105
// ! @brief The URI of ASTM E57 v1.0 standard XML namespace
104
106
// ! Note that even though this URI does not point to a valid document, the standard (section 8.4.2.3)
You can’t perform that action at this time.
0 commit comments