File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ namespace vcc::media::disk_images
2222 // / @brief The type used to hold geometry describing the disk capacity.
2323 using geometry_type = ::vcc::media::geometry::generic_disk_geometry;
2424 // / @brief The type of stream used to access the disk image file.
25- using stream_type = :: std::iostream;
25+ using stream_type = std::iostream;
2626 // / @brief The type used to hold a pointer to the stream used to access the disk image file.
27- using stream_ptr_type = :: std::unique_ptr<stream_type>;
27+ using stream_ptr_type = std::unique_ptr<stream_type>;
2828 // / @brief The type used to store a position in the disk image file.
2929 using position_type = stream_type::pos_type;
3030
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ namespace vcc::media
99 struct sector_record_header
1010 {
1111 // / @brief Specifies the type used to store header properties.
12- using size_type = :: std::size_t ;
12+ using size_type = std::size_t ;
1313
1414 // / @brief The identifier of the drive stored in the sector header. This value may be
1515 // / different than the physical head used to read the header. This member is
Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ namespace vcc::media::disk_images
197197 if (stream_.bad ())
198198 {
199199 // TODO: This should throw
200- :: std::fill (data_buffer.begin(), data_buffer.end(), 0xff);
200+ std::fill (data_buffer.begin (), data_buffer.end (), 0xff );
201201 }
202202 }
203203
You can’t perform that action at this time.
0 commit comments