summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavi Artigas <xavierartigas@yahoo.es>2020-03-13 11:03:21 +0100
committerXavi Artigas <xavierartigas@yahoo.es>2020-03-17 19:23:56 +0100
commitd1c74afc40ef3e4c050c05b47aeefd48d23f42f4 (patch)
treeb4ca38c34660a814efcb615bc0ca3abd5d304c30
parenteb2971fd4cf23c34a9f95048a7b40471b7b52e09 (diff)
downloadefl-d1c74afc40ef3e4c050c05b47aeefd48d23f42f4.tar.gz
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.
-rw-r--r--src/lib/eina/eina_vector.h8
1 files 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;