mirror of https://github.com/adamdruppe/arsd.git
fix covariance of clone methods
This commit is contained in:
parent
61f0d29523
commit
15aa26cbdf
4
html.d
4
html.d
|
@ -777,7 +777,7 @@ class CssAtRule : CssPart {
|
||||||
|
|
||||||
string content;
|
string content;
|
||||||
|
|
||||||
override CssPart clone() const {
|
override CssAtRule clone() const {
|
||||||
auto n = new CssAtRule();
|
auto n = new CssAtRule();
|
||||||
n.content = content;
|
n.content = content;
|
||||||
return n;
|
return n;
|
||||||
|
@ -897,7 +897,7 @@ class CssRule : CssPart {
|
||||||
// note: does not include the ending semicolon
|
// note: does not include the ending semicolon
|
||||||
string content;
|
string content;
|
||||||
|
|
||||||
override CssPart clone() const {
|
override CssRule clone() const {
|
||||||
auto n = new CssRule();
|
auto n = new CssRule();
|
||||||
n.content = content;
|
n.content = content;
|
||||||
return n;
|
return n;
|
||||||
|
|
Loading…
Reference in New Issue