From 045d0095e333775ddea162883f3b18cb3c612961 Mon Sep 17 00:00:00 2001
From: Jonathan Youett <youett@math.fu-berlin.de>
Date: Thu, 13 Nov 2014 16:35:39 +0100
Subject: [PATCH] Dune::shared_ptr -> std::shared_ptr

---
 dune/elasticity/materials/material.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dune/elasticity/materials/material.hh b/dune/elasticity/materials/material.hh
index 524b004..c8af0a2 100644
--- a/dune/elasticity/materials/material.hh
+++ b/dune/elasticity/materials/material.hh
@@ -42,7 +42,7 @@ class Material
         }
 
         //! Evaluate the strain energy
-        virtual ReturnType energy(Dune::shared_ptr<GridFunction> displace) = 0;
+        virtual ReturnType energy(std::shared_ptr<GridFunction> displace) = 0;
 
         //! Return the local assembler of the first derivative of the strain energy at some displacement
         virtual LocalLinearization& firstDerivative(std::shared_ptr<GridFunction> displace) = 0;
-- 
GitLab