mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Added move ctor
This commit is contained in:
parent
2ac6b339b2
commit
bdf9eefad2
1 changed files with 6 additions and 0 deletions
|
@ -1837,6 +1837,12 @@ public:
|
|||
bool mConstraintsPassed;
|
||||
|
||||
public:
|
||||
BfGenericExtensionEntry(BfGenericExtensionEntry&& prev) :
|
||||
mGenericParams(std::move(prev.mGenericParams)),
|
||||
mConstraintsPassed(prev.mConstraintsPassed)
|
||||
{
|
||||
}
|
||||
|
||||
BfGenericExtensionEntry()
|
||||
{
|
||||
mConstraintsPassed = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue