Skip to content

Commit

Permalink
Merge pull request #6202 from lioncash/reorder-warn
Browse files Browse the repository at this point in the history
AbstractTexture: Remove a redundant constructor initializer list entry
  • Loading branch information
JosJuice committed Nov 19, 2017
2 parents 7372bb0 + 2bd88bd commit 4c23516
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/VideoCommon/AbstractTexture.cpp
Expand Up @@ -9,7 +9,7 @@
#include "VideoCommon/AbstractTexture.h"
#include "VideoCommon/ImageWrite.h"

AbstractTexture::AbstractTexture(const TextureConfig& c) : m_config(c), m_currently_mapped(false)
AbstractTexture::AbstractTexture(const TextureConfig& c) : m_config(c)
{
}

Expand Down

0 comments on commit 4c23516

Please sign in to comment.