gdiplus: Remove a useless inline specifier.
This commit is contained in:
parent
190d7e74ec
commit
0065a115c6
|
@ -418,7 +418,7 @@ void convert_32bppARGB_to_32bppPARGB(UINT width, UINT height,
|
|||
}
|
||||
|
||||
/* recursive deletion of GpRegion nodes */
|
||||
inline void delete_element(region_element* element)
|
||||
void delete_element(region_element* element)
|
||||
{
|
||||
switch(element->type)
|
||||
{
|
||||
|
|
|
@ -61,7 +61,7 @@ extern BOOL lengthen_path(GpPath *path, INT len);
|
|||
extern GpStatus trace_path(GpGraphics *graphics, GpPath *path);
|
||||
|
||||
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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue