diff options
author | Colin Snover | 2017-11-06 22:45:32 -0600 |
---|---|---|
committer | Colin Snover | 2017-12-03 20:27:42 -0600 |
commit | a5bc89102e790d38d23a0a220ee2d42baee647a1 (patch) | |
tree | 32c3bdb45c8cd7cf3ef9ea1f7af2c9337a079334 /graphics/yuv_to_rgb.cpp | |
parent | ef33d8a2fb987f3fdbeb094aca2ecdfcd5b269ba (diff) | |
download | scummvm-rg350-a5bc89102e790d38d23a0a220ee2d42baee647a1.tar.gz scummvm-rg350-a5bc89102e790d38d23a0a220ee2d42baee647a1.tar.bz2 scummvm-rg350-a5bc89102e790d38d23a0a220ee2d42baee647a1.zip |
ALL: Remove obsolete register keyword
The register keyword was deprecated from the C++11 standard,
<http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4193.html#809>,
and removed from the C++17 standard,
<http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4340>, so
cannot exist in a well-formed C++17 program.
It has never done anything in GCC
<https://gcc.gnu.org/ml/gcc/2010-05/msg00113.html>
and because of the way it is specified in the standard, it is “as
meaningful as whitespace”
<http://www.drdobbs.com/keywords-that-arent-or-comments-by-anoth/184403859>.
The one remaining use of the register keyword is in the DS backend,
where it is used to create a local register variable using the
non-standard GCC Extended Asm feature.
Closes gh-1079.
Diffstat (limited to 'graphics/yuv_to_rgb.cpp')
-rw-r--r-- | graphics/yuv_to_rgb.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/yuv_to_rgb.cpp b/graphics/yuv_to_rgb.cpp index 2a485fa664..f4429cb607 100644 --- a/graphics/yuv_to_rgb.cpp +++ b/graphics/yuv_to_rgb.cpp @@ -207,7 +207,7 @@ void convertYUV444ToRGB(byte *dstPtr, int dstPitch, const YUVToRGBLookup *lookup for (int h = 0; h < yHeight; h++) { for (int w = 0; w < yWidth; w++) { - register const uint32 *L; + const uint32 *L; int16 cr_r = Cr_r_tab[*vSrc]; int16 crb_g = Cr_g_tab[*vSrc] + Cb_g_tab[*uSrc]; @@ -256,7 +256,7 @@ void convertYUV420ToRGB(byte *dstPtr, int dstPitch, const YUVToRGBLookup *lookup for (int h = 0; h < halfHeight; h++) { for (int w = 0; w < halfWidth; w++) { - register const uint32 *L; + const uint32 *L; int16 cr_r = Cr_r_tab[*vSrc]; int16 crb_g = Cr_g_tab[*vSrc] + Cb_g_tab[*uSrc]; @@ -346,7 +346,7 @@ void convertYUV410ToRGB(byte *dstPtr, int dstPitch, const YUVToRGBLookup *lookup // Declare some variables for the following macros byte u, v; int16 cr_r, crb_g, cb_b; - register const uint32 *L; + const uint32 *L; READ_QUAD(uSrc, u); READ_QUAD(vSrc, v); |