We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a128a0 commit ff26176Copy full SHA for ff26176
src/vsg/state/ViewDependentState.cpp
@@ -76,11 +76,7 @@ ViewDescriptorSetLayout::ViewDescriptorSetLayout()
76
77
int ViewDescriptorSetLayout::compare(const Object& rhs_object) const
78
{
79
- int result = DescriptorSetLayout::compare(rhs_object);
80
- if (result != 0) return result;
81
-
82
- const auto& rhs = static_cast<decltype(*this)>(rhs_object);
83
- return compare_pointer(_viewDescriptorSetLayout, rhs._viewDescriptorSetLayout);
+ return DescriptorSetLayout::compare(rhs_object);
84
}
85
86
void ViewDescriptorSetLayout::read(Input& input)
0 commit comments