efl/eo: Fix Doxygen markup to prevent a warning
authorJeff Grimshaw <jeffrey.w.grimshaw@gmail.com>
Fri, 7 Mar 2014 08:00:03 +0000 (17:00 +0900)
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>
Fri, 7 Mar 2014 08:01:22 +0000 (17:01 +0900)
Summary:
The closing @} for the main Eo group is inside the #ifdef
EFL_BETA_API_SUPPORT block, so it gets removed by the preprocessor
unless the project is configured with EFL_BETA_API_SUPPORT.  Moved the
@} outside the #ifdef so it will always be there and Doxygen won't
complain.

Test Plan: make doc 2> doxyerr.log

Reviewers: raster

Reviewed By: raster

CC: cedric
Differential Revision: https://phab.enlightenment.org/D609

src/lib/eo/Eo.h

index ef43decad6cc97b92dfbcf39c3d5645c228584e7..7f77b393cfd5d0f9a4f9be13da421e6a4f280e27 100644 (file)
@@ -1534,14 +1534,15 @@ EAPI extern const Eo_Event_Description _EO_EV_DEL;
  * @}
  */
 
+
+#endif
+
 /**
  * @}
  */
 
-#endif
-
 #ifdef __cplusplus
-}
+} 
 #endif
 
 #endif