Commit 0065a115 authored by Alexandre Julliard's avatar Alexandre Julliard

gdiplus: Remove a useless inline specifier.

parent 190d7e74
...@@ -418,7 +418,7 @@ void convert_32bppARGB_to_32bppPARGB(UINT width, UINT height, ...@@ -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)
{ {
......
...@@ -61,7 +61,7 @@ extern BOOL lengthen_path(GpPath *path, INT len); ...@@ -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)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment