mirror of https://github.com/buggins/dlangui.git
fix build error on DMD x64
This commit is contained in:
parent
20f3f26ea1
commit
b6875df3d8
|
@ -240,9 +240,9 @@ struct EffectId {
|
||||||
bool opEquals(ref const EffectId s) const @safe pure nothrow
|
bool opEquals(ref const EffectId s) const @safe pure nothrow
|
||||||
{
|
{
|
||||||
return
|
return
|
||||||
std.string.cmp(this.vertexShaderName, s.vertexShaderName) == 0 &&
|
this.vertexShaderName == s.vertexShaderName &&
|
||||||
std.string.cmp(this.fragmentShaderName, s.fragmentShaderName) == 0 &&
|
this.fragmentShaderName == s.fragmentShaderName &&
|
||||||
std.string.cmp(this.definitions, s.definitions) == 0;
|
this.definitions == s.definitions;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue