Skip to content
Snippets Groups Projects
Commit beb13ac7 authored by Carsten Gräser's avatar Carsten Gräser
Browse files

[cleanup] Avoid unused variable warning in test

parent d26e5ed3
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,9 @@
#include "config.h"
#endif
#include <dune/common/unused.hh>
#include <dune/common/bitsetvector.hh>
#if defined(__GNUC__) && ! defined(__clang__)
#include <ext/malloc_allocator.h>
#endif
......@@ -18,7 +20,7 @@ struct ConstReferenceOp
typedef typename BBF::const_reference const_reference;
void operator()(const_reference t){
bitset x = t[0];
DUNE_UNUSED bitset x = t[0];
}
};
......
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