poppler/SplashOutputDev.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 1ae5d91467663576a5d11add69fa72a2d108f0ad Author: Albert Astals Cid <[email protected]> Date: Mon Jan 8 18:45:43 2018 +0100 Remove useless return in a void function diff --git a/poppler/SplashOutputDev.h b/poppler/SplashOutputDev.h index 05b7e943..89655d66 100644 --- a/poppler/SplashOutputDev.h +++ b/poppler/SplashOutputDev.h @@ -20,7 +20,7 @@ // Copyright (C) 2011 Andreas Hartmetz <[email protected]> // Copyright (C) 2011 Andrea Canciani <[email protected]> // Copyright (C) 2011, 2017 Adrian Johnson <[email protected]> -// Copyright (C) 2012, 2015 Albert Astals Cid <[email protected]> +// Copyright (C) 2012, 2015, 2018 Albert Astals Cid <[email protected]> // Copyright (C) 2015, 2016 William Bader <[email protected]> // // To see a description of the changes please see the Changelog file that @@ -154,7 +154,7 @@ public: void getTriangle(int i, double *x0, double *y0, double *color0, double *x1, double *y1, double *color1, double *x2, double *y2, double *color2) override - { return shading->getTriangle(i, x0, y0, color0, x1, y1, color1, x2, y2, color2); } + { shading->getTriangle(i, x0, y0, color0, x1, y1, color1, x2, y2, color2); } void getParameterizedColor(double t, SplashColorMode mode, SplashColorPtr c) override; _______________________________________________ poppler mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/poppler
