Skip to content

Commit c484bd2

Browse files
committed
remove root scope from ::std
1 parent 02c46a6 commit c484bd2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

libcommon/include/vcc/media/disk_images/generic_disk_image.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

libcommon/include/vcc/media/sector_record_header.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

libcommon/src/media/disk_images/generic_disk_image.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)