From: bangerth Date: Fri, 29 Dec 2006 18:58:03 +0000 (+0000) Subject: Work around something the SunCC probably correctly flags as an error. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8b4faa29c497285184a2492fc1ad03c59116fbf;p=dealii-svn.git Work around something the SunCC probably correctly flags as an error. git-svn-id: https://svn.dealii.org/trunk@14283 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/include/base/data_out_base.h b/deal.II/base/include/base/data_out_base.h index ad9d9c75d1..a801136c6d 100644 --- a/deal.II/base/include/base/data_out_base.h +++ b/deal.II/base/include/base/data_out_base.h @@ -2390,7 +2390,8 @@ class DataOutInterface : private DataOutBase using DataOutBase::deal_II_intermediate; using DataOutBase::parse_output_format; using DataOutBase::get_output_format_names; - + using DataOutBase::determine_intermediate_format_dimensions; + /** * Constructor. */ diff --git a/deal.II/base/source/data_out_base.cc b/deal.II/base/source/data_out_base.cc index 69725a77e5..2e150ae03d 100644 --- a/deal.II/base/source/data_out_base.cc +++ b/deal.II/base/source/data_out_base.cc @@ -3911,7 +3911,7 @@ DataOutReader::read (std::istream &in) { std::pair dimension_info - = dealii::DataOutBase::determine_intermediate_format_dimensions (in); + = determine_intermediate_format_dimensions (in); AssertThrow ((dimension_info.first == dim) && (dimension_info.second == spacedim), ExcIncompatibleDimensions (dimension_info.first, dim,