Date: Fri, 12 Oct 2012 16:39:23 +0000 (UTC) From: Mikhail Teterin <mi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305785 - head/graphics/libfpx/files Message-ID: <201210121639.q9CGdN36038257@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mi Date: Fri Oct 12 16:39:23 2012 New Revision: 305785 URL: http://svn.freebsd.org/changeset/ports/305785 Log: Add a patch removing two unused private fields from an internal class. The dead fields must've been there for years, but only clang-3.2 complains about it... The class' composition is not exported outside the library anyway, so there are no concerns about a known structure changing size -- hence, no shlib number bumps or anything. PR: ports/172637 Submitted by: Oliver Hartmann Feature safe: yes Added: head/graphics/libfpx/files/patch-unused-privates (contents, props changed) Added: head/graphics/libfpx/files/patch-unused-privates ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/libfpx/files/patch-unused-privates Fri Oct 12 16:39:23 2012 (r305785) @@ -0,0 +1,14 @@ +These fields have been unused for many years, but it is only now, +that some compilers (clang-3.2) complain about it... + + -mi + +--- fpx/fpximgvw.h 2007-11-02 03:10:05.000000000 -0400 ++++ fpx/fpximgvw.h 2012-10-12 12:28:39.000000000 -0400 +@@ -300,6 +300,4 @@ + + PFileFlashPixView* filePtr; // The image file descriptor +- OLEStorage* sourceStorage; // Source FPX Image storage +- OLEStorage* resultStorage; // Result FPX Image storage + + // Geometric parameters
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210121639.q9CGdN36038257>