From 988dc73a145d395fa82a0639aedb7839fa934110 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Foucault?= Date: Mon, 10 Jan 2022 22:52:14 +0100 Subject: Use `using` instead of typedef inside of vec_base --- source/blender/blenlib/BLI_math_vec_types.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/blenlib/BLI_math_vec_types.hh b/source/blender/blenlib/BLI_math_vec_types.hh index 2e0b17d8bc4..31f28061410 100644 --- a/source/blender/blenlib/BLI_math_vec_types.hh +++ b/source/blender/blenlib/BLI_math_vec_types.hh @@ -59,8 +59,8 @@ template struct vec_base : public vec_struct_base static constexpr int type_length = Size; - typedef T base_type; - typedef vec_base, Size> uint_type; + using base_type = T; + using uint_type = vec_base, Size>; vec_base() = default; -- cgit v1.2.3