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

This commit is contained in:
wmayer
2022-08-29 12:58:39 +02:00
parent d2168f51b9
commit 5240a30431
33 changed files with 86 additions and 85 deletions

View File

@@ -49,7 +49,7 @@ using namespace App;
using namespace Base;
namespace bp = boost::placeholders;
typedef boost::iterator_range<const char*> CharRange;
using CharRange = boost::iterator_range<const char*>;
////////////////////////////////////////////////////////////////////////