From: Wolfgang Bangerth Date: Sat, 8 Sep 2012 11:56:15 +0000 (+0000) Subject: Disambiguate call to vector::push_back to make gcc 4.8 happy. X-Git-Tag: v8.0.0~2154 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4fafbcc496b85588bbb70e1129fcca36af7fb90f;p=dealii.git Disambiguate call to vector::push_back to make gcc 4.8 happy. git-svn-id: https://svn.dealii.org/trunk@26256 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/base/parameter_handler.h b/deal.II/include/deal.II/base/parameter_handler.h index e7643d852d..9a81d2a33a 100644 --- a/deal.II/include/deal.II/base/parameter_handler.h +++ b/deal.II/include/deal.II/base/parameter_handler.h @@ -2866,7 +2866,7 @@ ParameterHandler::load (Archive & ar, const unsigned int) patterns.clear (); for (unsigned int j=0; j(Patterns::pattern_factory(descriptions[j]))); + patterns.push_back (std_cxx1x::shared_ptr(Patterns::pattern_factory(descriptions[j]))); }