Misc: modernize C++: replace 'typedef' with 'using'

This commit is contained in:
wmayer
2022-08-30 11:10:02 +02:00
parent 5f91eaa5eb
commit e93fca18c0
3 changed files with 7 additions and 7 deletions

View File

@@ -68,7 +68,7 @@ namespace Base {
Scientific = 2
};
typedef int NumberOptions;
using NumberOptions = int;
NumberOptions option;
NumberFormat format;
int precision;