diff options
Diffstat (limited to 'src/fs/AllocatedPath.hxx')
-rw-r--r-- | src/fs/AllocatedPath.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fs/AllocatedPath.hxx b/src/fs/AllocatedPath.hxx index 1d5eb0720..09e805dfe 100644 --- a/src/fs/AllocatedPath.hxx +++ b/src/fs/AllocatedPath.hxx @@ -36,10 +36,10 @@ */ class AllocatedPath { using Traits = PathTraitsFS; - typedef Traits::string string; - typedef Traits::value_type value_type; - typedef Traits::pointer pointer; - typedef Traits::const_pointer const_pointer; + using string = Traits::string; + using value_type = Traits::value_type; + using pointer = Traits::pointer; + using const_pointer = Traits::const_pointer; string value; |