eolian: fix tests after latest restrictions

This commit is contained in:
Daniel Kolesa 2019-07-26 14:39:38 +02:00
parent 1348569bfa
commit 1a95e87f58
3 changed files with 6 additions and 2 deletions

View File

@ -8,9 +8,9 @@ type Evas.Coord3: Evas.Coord2;
type @extern Evas.Pants: float; /* not generated */
type Undef: __undefined_type; /* not generated */
type @beta Undef: __undefined_type; /* not generated */
type Free: __builtin_free_cb; /* specially generated */
type @beta Free: __builtin_free_cb; /* specially generated */
enum Enum.Bar
{

View File

@ -19,7 +19,9 @@ typedef Evas_Coord Evas_Coord2;
typedef Evas_Coord2 Evas_Coord3;
#ifdef EFL_BETA_API_SUPPORT
typedef void (*Free)(void *data);
#endif /* EFL_BETA_API_SUPPORT */
typedef enum
{

View File

@ -11,7 +11,9 @@ typedef Evas_Coord Evas_Coord2;
typedef Evas_Coord2 Evas_Coord3;
#ifdef EFL_BETA_API_SUPPORT
typedef void (*Free)(void *data);
#endif /* EFL_BETA_API_SUPPORT */
#endif