Skip to content
Snippets Groups Projects
Commit 37628065 authored by Martin Nolte's avatar Martin Nolte
Browse files

declare PoolAllocator a friend of Pool to make the last fix compile

[[Imported from SVN: r5507]]
parent 936be297
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ int testPool();
namespace Dune
{
template<typename T, std::size_t size>
template<typename T, std::size_t s>
class Pool;
template<typename T, std::size_t s>
......@@ -87,6 +87,7 @@ namespace Dune
friend int ::testPool<s,T>();
//friend std::ostream& std::operator<<<>(std::ostream&,Pool<T,s>&);
template< class, std::size_t > friend class PoolAllocator;
private:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment