Skip to content

Commit

Permalink
Explicitly initialize the base class
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Dec 13, 2023
1 parent bd7c09b commit 6b373d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpp/src/IMPL/TrackImpl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace IMPL {
}

// copy constructor
TrackImpl::TrackImpl(const TrackImpl& o)
TrackImpl::TrackImpl(const TrackImpl& o) : AccessChecked(o)
{

*this = o ; // call operator =
Expand Down

0 comments on commit 6b373d4

Please sign in to comment.