Skip to content
Snippets Groups Projects
Commit 34eaf162 authored by Christian Engwer's avatar Christian Engwer
Browse files

* use correct allocator, make test work with g++-3.4

merge to release

[[Imported from SVN: r1172]]
parent 8b26ca07
No related branches found
No related tags found
No related merge requests found
......@@ -316,8 +316,11 @@ namespace Dune
/** @brief The type of the redistribute information. */
typedef RedistributeInformation<ParallelInformation> RedistributeInfoType;
/** @brief Allocator for RedistributeInfoType. */
typedef typename Allocator::template rebind<RedistributeInfoType>::other RILAllocator;
/** @brief The type of the list of redistribute information. */
typedef std::list<RedistributeInfoType,AAllocator> RedistributeInfoList;
typedef std::list<RedistributeInfoType,RILAllocator> RedistributeInfoList;
/**
* @brief Constructor
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment