Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-istl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Core Modules
dune-istl
Commits
bbc28728
Commit
bbc28728
authored
10 months ago
by
Simon Praetorius
Browse files
Options
Downloads
Patches
Plain Diff
Add error message for VariableBlockVector<bool>
parent
b34fb142
No related branches found
No related tags found
1 merge request
!463
Cleanup the VariableBlockVector implementation
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/istl/vbvector.hh
+3
-0
3 additions, 0 deletions
dune/istl/vbvector.hh
with
3 additions
and
0 deletions
dune/istl/vbvector.hh
+
3
−
0
View file @
bbc28728
...
...
@@ -54,6 +54,9 @@ namespace Dune {
// data-structure holding the windows (but not the actual data)
using
VectorWindows
=
std
::
vector
<
window_type
,
typename
std
::
allocator_traits
<
A
>::
template
rebind_alloc
<
window_type
>
>
;
// block type bool is not supported since std::vector<bool> is used for storage
static_assert
(
not
std
::
is_same_v
<
B
,
bool
>
,
"Block type 'bool' not supported by VariableBlockVector."
);
public:
//===== type definitions and constants
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment