Skip to content

Commit

Permalink
fixes #5: added missing std namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
gulrak committed Jan 4, 2019
1 parent 8cddfcb commit c6050c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion filesystem.h
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ class recursive_directory_iterator
public:
using iterator_category = std::input_iterator_tag;
using value_type = directory_entry;
using difference_type = ptrdiff_t;
using difference_type = std::ptrdiff_t;
using pointer = const directory_entry*;
using reference = const directory_entry&;

Expand Down

0 comments on commit c6050c3

Please sign in to comment.