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

[amg] remove some #warning statements as they are now listed in a dedicated issue

parent 4d7d1a6c
Branches
Tags
1 merge request!274Feature/amg memory management
......@@ -120,7 +120,6 @@ namespace Dune
/**
* @brief The matrix block type we use as weights.
*/
#warning why should the internal type of the weight change, depending on the constness of the matrix?
typedef typename std::conditional<isMutable && C::mutableMatrix,typename M::block_type,
const typename M::block_type>::type
Weight;
......
......@@ -34,7 +34,6 @@ namespace Dune
* advisable one can add redistributed version of the container at
* each level.
*/
#warning change to use std::deque
template<typename T, typename A=std::allocator<T> >
class Hierarchy
{
......@@ -184,7 +183,6 @@ namespace Dune
* @brief Check whether there was a redistribution at the current level.
* @return True if there is a redistributed version of the container at the current level.
*/
#warning TODO get rid of the following function
bool isRedistributed() const
{
return (bool)element_->redistributed_;
......@@ -194,7 +192,6 @@ namespace Dune
* @brief Get the redistributed container.
* @return The redistributed container.
*/
#warning TODO get rid of the following three functions
T1& getRedistributed() const
{
assert(element_->redistributed_);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment