We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
boost::iterator_facade
1 parent 3b6dbc7 commit 9856497Copy full SHA for 9856497
3 files changed
pxr/usd/pcp/iterator.cpp
@@ -34,12 +34,7 @@ PXR_NAMESPACE_OPEN_SCOPE
34
35
////////////////////////////////////////////////////////////
36
37
-PcpPrimIterator::PcpPrimIterator()
38
- : _primIndex(NULL)
39
- , _pos(PCP_INVALID_INDEX)
40
-{
41
- // Do nothing
42
-}
+PcpPrimIterator::PcpPrimIterator() = default;
43
44
PcpPrimIterator::PcpPrimIterator(
45
const PcpPrimIndex* primIndex, size_t pos)
@@ -125,11 +120,7 @@ PcpPrimIterator::_GetSiteRef() const
125
120
126
121
127
122
128
-PcpPropertyIterator::PcpPropertyIterator()
129
- : _propertyIndex(NULL)
130
- , _pos(0)
131
132
123
+PcpPropertyIterator::PcpPropertyIterator() = default;
133
124
134
PcpPropertyIterator::PcpPropertyIterator(
135
const PcpPropertyIndex& index, size_t pos)
0 commit comments