xartigas pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=d1c74afc40ef3e4c050c05b47aeefd48d23f42f4

commit d1c74afc40ef3e4c050c05b47aeefd48d23f42f4
Author: Xavi Artigas <[email protected]>
Date:   Fri Mar 13 11:03:21 2020 +0100

    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;

-- 


Reply via email to