We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cd4825a + e801a56 commit bc17abcCopy full SHA for bc17abc
1 file changed
Source/Common/Policy.cpp
@@ -41,6 +41,7 @@ Policy::Policy(const Policy* p)
41
this->name = p->name;
42
this->description = p->description;
43
this->tags = p->tags;
44
+ this->type = p->type;
45
this->level = p->level;
46
this->license = p->license;
47
this->is_system = false;
@@ -60,6 +61,7 @@ Policy::Policy(const Policy& p)
60
61
this->name = p.name;
62
this->description = p.description;
63
this->tags = p.tags;
64
+ this->type = p.type;
65
this->level = p.level;
66
this->license = p.license;
67
this->is_system = p.is_system;
0 commit comments