Avoid of incompatible types in static vtables.

develop
Kolan Sh 2012-05-01 01:19:54 +04:00
parent 2f3417cf85
commit a00305f0be
2 changed files with 10 additions and 10 deletions

View File

@ -71,11 +71,11 @@ ColoredSquare* ColoredSquare_new (double a, int color)
{
static ColoredSquare_interface vtable =
{
ColoredSquare_clone,
Square_destroy,
ColoredSquare_type,
ColoredSquare_draw,
Square_area,
(void* (*) (void *)) ColoredSquare_clone,
(void (*) (void *)) Square_destroy,
(const char* (*) (Figure *)) ColoredSquare_type,
(void (*) (Figure *)) ColoredSquare_draw,
(double (*) (Figure *)) Square_area,
Square_resize,
Square_diag_length,
ColoredSquare_set_color

View File

@ -102,11 +102,11 @@ Square* Square_new (double a)
{
static Square_interface vtable =
{
Square_clone,
Square_destroy,
Square_type,
Square_draw,
Square_area,
(void* (*) (void *)) Square_clone,
(void (*) (void *)) Square_destroy,
(const char* (*) (Figure *)) Square_type,
(void (*) (Figure *)) Square_draw,
(double (*) (Figure *)) Square_area,
Square_resize,
Square_diag_length
};