Base: modernize C++: replace 'typedef' with 'using'
This commit is contained in:
@@ -47,7 +47,7 @@ enum class ScaleType {
|
||||
*/
|
||||
class BaseExport Matrix4D
|
||||
{
|
||||
typedef float_traits<double> traits_type;
|
||||
using traits_type = float_traits<double>;
|
||||
|
||||
public:
|
||||
/// Default constructor
|
||||
|
||||
Reference in New Issue
Block a user