From: Daniel Arndt Date: Mon, 20 Jan 2020 14:29:27 +0000 (-0500) Subject: Fix compiling for C++11 X-Git-Tag: v9.2.0-rc1~633^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c5ab163b37ea8235fa254c95f179719469a95353;p=dealii.git Fix compiling for C++11 --- diff --git a/source/distributed/fully_distributed_tria.cc b/source/distributed/fully_distributed_tria.cc index 080c0fd2fc..710f4b517f 100644 --- a/source/distributed/fully_distributed_tria.cc +++ b/source/distributed/fully_distributed_tria.cc @@ -16,6 +16,7 @@ #include #include +#include #include #include @@ -317,7 +318,7 @@ namespace parallel *>(&other_tria) == nullptr) { serial_tria = - std::make_unique>(); + std_cxx14::make_unique>(); // actually copy the serial triangulation serial_tria->copy_triangulation(other_tria);