fs: use using instead of typedef

This commit is contained in:
Max Kellermann
2020-03-13 19:32:51 +01:00
parent 3796247d6d
commit 58c7ec07a4
4 changed files with 20 additions and 20 deletions

View File

@@ -37,11 +37,11 @@
*/
class NarrowPath {
#ifdef _UNICODE
typedef AllocatedString<> Value;
using Value = AllocatedString<>;
#else
typedef StringPointer<> Value;
using Value = StringPointer<>;
#endif
typedef typename Value::const_pointer const_pointer;
using const_pointer = typename Value::const_pointer;
Value value;