gdiplus: Remove a useless inline specifier.

This commit is contained in:
Alexandre Julliard 2009-10-19 11:44:39 +02:00
parent 190d7e74ec
commit 0065a115c6
2 changed files with 2 additions and 2 deletions

View File

@ -418,7 +418,7 @@ void convert_32bppARGB_to_32bppPARGB(UINT width, UINT height,
} }
/* recursive deletion of GpRegion nodes */ /* recursive deletion of GpRegion nodes */
inline void delete_element(region_element* element) void delete_element(region_element* element)
{ {
switch(element->type) switch(element->type)
{ {

View File

@ -61,7 +61,7 @@ extern BOOL lengthen_path(GpPath *path, INT len);
extern GpStatus trace_path(GpGraphics *graphics, GpPath *path); extern GpStatus trace_path(GpGraphics *graphics, GpPath *path);
typedef struct region_element region_element; typedef struct region_element region_element;
extern inline void delete_element(region_element *element); extern void delete_element(region_element *element);
static inline INT roundr(REAL x) static inline INT roundr(REAL x)
{ {