Skip to content

Commit

Permalink
fix to VC14 build
Browse files Browse the repository at this point in the history
  • Loading branch information
djmott committed Jul 25, 2016
1 parent 6aef0c9 commit 5c9d86b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/xtd/filesystem.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ namespace xtd{
namespace filesystem{
class path_base : public std::experimental::filesystem::path{
using _super_t = std::experimental::filesystem::path;
static const value_type seperator = '/';
public:
static const value_type seperator = '/';
template <typename ... _ArgTs> path_base(_ArgTs...oArgs) : _super_t(std::forward<_ArgTs>(oArgs)...){}
};
}
Expand Down

0 comments on commit 5c9d86b

Please sign in to comment.