Fix clang build of CGameCfg

clang is confused by the use of a class named dcx.  Move the declaration
into a namespace{} block to avoid this.
This commit is contained in:
Kp 2016-01-29 04:05:47 +00:00
parent 4abbc28d0f
commit 1eb54bcf4f

View file

@ -46,7 +46,9 @@ COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
#include "compiler-make_unique.h"
CCfg dcx::CGameCfg;
namespace dcx {
CCfg CGameCfg;
}
namespace dsx {
Cfg GameCfg;