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

This commit is contained in:
wmayer
2022-08-29 22:57:24 +02:00
parent 55bfdfb6d7
commit 2ae40e006c
5 changed files with 18 additions and 18 deletions

View File

@@ -246,7 +246,7 @@ public:
}
};
typedef std::shared_ptr<Converter> ConverterPtr;
using ConverterPtr = std::shared_ptr<Converter>;
class DataStreambuf : public std::streambuf
{