From f4a975d64cea00cea9421b61c110d47aca364fa4 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Fri, 18 Nov 2011 22:57:07 +0000 Subject: [PATCH] Remove unnecessary explicit 'inline' Originally committed to SVN as r5880. --- aegisub/src/audio_colorscheme.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/aegisub/src/audio_colorscheme.h b/aegisub/src/audio_colorscheme.h index 1e3d2c7f5..af6df5749 100644 --- a/aegisub/src/audio_colorscheme.h +++ b/aegisub/src/audio_colorscheme.h @@ -87,7 +87,7 @@ public: /// /// Writes into the XRGB pixel (assumed 32 bit without alpha) passed. /// The pixel format is assumed to be the same as that in the palette. - inline void map(float val, unsigned char *pixel) + void map(float val, unsigned char *pixel) { if (val < 0.0) val = 0.0; if (val > 1.0) val = 1.0; @@ -115,4 +115,3 @@ public: return wxColour(color[0], color[1], color[2]); } }; -