Skip to content

Commit

Permalink
AbstractTexture: Remove a redundant constructor initializer list entry
Browse files Browse the repository at this point in the history
This is already initialized in the class definition. This would
previously cause a -Wreorder warning on macOS, as m_config is
defined after m_currently_mapped.
  • Loading branch information
lioncash committed Nov 19, 2017
1 parent 9b100c6 commit 2bd88bd
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 2bd88bd

Please sign in to comment.