diff options
| author | Mat M <mathew1800@gmail.com> | 2016-09-25 16:53:46 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-25 16:53:46 -0400 |
| commit | e7efbf7ae58b27266daa62e4ccae6b6ce2b48fa2 (patch) | |
| tree | 55ff67a7a76144406d84aa95142210e6978937fe /Source/Core/Common/SysConf.cpp | |
| parent | a1486d48efecf7cb4b3f6daff4bdbb0b5c822a31 (diff) | |
| parent | 349b27199b178fd2fb73727617ac86109c53f7aa (diff) | |
Merge pull request #4246 from leoetlino/in-class-init
In-class initialise member variables
Diffstat (limited to 'Source/Core/Common/SysConf.cpp')
| -rw-r--r-- | Source/Core/Common/SysConf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/SysConf.cpp b/Source/Core/Common/SysConf.cpp index d6aed4f29e..980318c06b 100644 --- a/Source/Core/Common/SysConf.cpp +++ b/Source/Core/Common/SysConf.cpp @@ -17,7 +17,7 @@ #include "Core/Movie.h" -SysConf::SysConf() : m_IsValid(false) +SysConf::SysConf() { UpdateLocation(); } |
