remove semicolon

This commit is contained in:
Marshall Mohror 2021-02-05 08:25:02 -06:00 committed by GitHub
parent a131f9eb74
commit 00c798991c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -63,7 +63,7 @@ struct HostTextureTag {
bool operator==(const HostTextureTag& rhs) const noexcept {
return std::tie(internal_format, format, width, height) ==
std::tie(rhs.internal_format, rhs.format, rhs.width, rhs.height);
};
}
};
struct TextureCubeConfig {