From d1c74afc40ef3e4c050c05b47aeefd48d23f42f4 Mon Sep 17 00:00:00 2001 From: Xavi Artigas Date: Fri, 13 Mar 2020 11:03:21 +0100 Subject: [PATCH] doxygen docs: Create Eina Vector2 group in the right place A couple members were outside the group and appeared in the Eina Data Types page instead. --- src/lib/eina/eina_vector.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/eina/eina_vector.h b/src/lib/eina/eina_vector.h index 13617c22e0..998879b099 100644 --- a/src/lib/eina/eina_vector.h +++ b/src/lib/eina/eina_vector.h @@ -32,16 +32,16 @@ * @{ */ -typedef struct _Eina_Vector2 Eina_Vector2; -typedef struct _Eina_Vector3 Eina_Vector3; - -#define EINA_VECTOR2(x, y) ((Eina_Vector2) {(x), (y)}) /** * @defgroup Eina_Vector2 Floating point vectors in 2D * @brief 2D vector definition and operations * @{ */ +typedef struct _Eina_Vector2 Eina_Vector2; +typedef struct _Eina_Vector3 Eina_Vector3; + +#define EINA_VECTOR2(x, y) ((Eina_Vector2) {(x), (y)}) struct _Eina_Vector2 { double x;