freebsd-ports/graphics/plotutils/files/patch-libplot_s__defplot.c
Kirill Ponomarev ce1f6608f8 Fix build on -current
PR:		55351
Submitted by:	Glenn Johnson <gjohnson@srrc.ars.usda.gov>
2003-08-10 06:34:37 +00:00

37 lines
999 B
C

$FreeBSD$
--- libplot/s_defplot.c.orig Sun Jul 2 18:20:20 2000
+++ libplot/s_defplot.c Thu Aug 7 11:48:12 2003
@@ -196,13 +196,13 @@
_s_initialize ();
}
-SVGPlotter::SVGPlotter (istream& in, ostream& out, ostream& err)
+SVGPlotter::SVGPlotter (std::istream& in, std::ostream& out, std::ostream& err)
: Plotter (in, out, err)
{
_s_initialize ();
}
-SVGPlotter::SVGPlotter (ostream& out)
+SVGPlotter::SVGPlotter (std::ostream& out)
: Plotter (out)
{
_s_initialize ();
@@ -225,13 +225,13 @@
_s_initialize ();
}
-SVGPlotter::SVGPlotter (istream& in, ostream& out, ostream& err, PlotterParams &parameters)
+SVGPlotter::SVGPlotter (std::istream& in, std::ostream& out, std::ostream& err, PlotterParams &parameters)
: Plotter (in, out, err, parameters)
{
_s_initialize ();
}
-SVGPlotter::SVGPlotter (ostream& out, PlotterParams &parameters)
+SVGPlotter::SVGPlotter (std::ostream& out, PlotterParams &parameters)
: Plotter (out, parameters)
{
_s_initialize ();