Skip to content

Commit 22e055b

Browse files
committed
explicitly introduce push_data version of the base class that is not overridden
1 parent a94c62d commit 22e055b

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

source/source_base/module_mixing/broyden_mixing.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ class Broyden_Mixing : public Mixing
5454
this->address = nullptr;
5555
}
5656

57+
// explicitly introduce push_data version of the base class
58+
// that is not overridden in this class
59+
using Mixing::push_data;
60+
5761
/**
5862
* @brief
5963
*

source/source_base/module_mixing/plain_mixing.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ class Plain_Mixing : public Mixing
3030
return;
3131
}
3232

33+
// explicitly introduce push_data version of the base class
34+
// that is not overridden in this class
35+
using Mixing::push_data;
36+
3337
/**
3438
* @brief
3539
*

0 commit comments

Comments
 (0)