From f8af720d421375a89a117f31a290aebf5c12f11c Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 6 Jan 2005 23:14:33 +0000 Subject: [PATCH] Work around a bogus warning with gcc4. git-svn-id: https://svn.dealii.org/trunk@9869 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/source/data_out_base.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/base/source/data_out_base.cc b/deal.II/base/source/data_out_base.cc index 47f8f42bb8..6ae0627a94 100644 --- a/deal.II/base/source/data_out_base.cc +++ b/deal.II/base/source/data_out_base.cc @@ -222,7 +222,7 @@ DataOutBase::EpsFlags::default_color_function (const double x, const double xmin, const double xmax) { - RgbValues rgb_values; + RgbValues rgb_values = { 0,0,0 }; // A difficult color scale: // xmin = black (1) -- 2.39.5