Skip to content

Commit

Permalink
Client|BiasIllum|BiasTracker: Fixed copy-ctor explicit init warnings …
Browse files Browse the repository at this point in the history
…re BiasIllum and BiasTracker
  • Loading branch information
danij-deng committed Aug 23, 2013
1 parent e7b807a commit 4171c89
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion doomsday/client/src/render/biasillum.cpp
Expand Up @@ -63,7 +63,8 @@ DENG2_PIMPL_NOREF(BiasIllum)
Instance(BiasTracker *tracker) : tracker(tracker)
{}

Instance(Instance const &other) : tracker(other.tracker), color(other.color)
Instance(Instance const &other)
: IPrivate(), tracker(other.tracker), color(other.color)
{
if(!other.lerpInfo.isNull())
{
Expand Down
3 changes: 2 additions & 1 deletion doomsday/client/src/render/biastracker.cpp
Expand Up @@ -57,7 +57,8 @@ DENG2_OBSERVES(BiasSource, Deletion)
}

Instance(Instance const &other)
: activeContributors(other.activeContributors),
: IPrivate(),
activeContributors(other.activeContributors),
changedContributions(other.changedContributions),
lastSourceDeletion(other.lastSourceDeletion)
{
Expand Down

0 comments on commit 4171c89

Please sign in to comment.