Fix clang build of CGameArg

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 1eb54bcf4f
commit 92625ff2d0

View file

@ -31,7 +31,9 @@
#include "compiler-range_for.h"
#include "partial_range.h"
dcx::CArg dcx::CGameArg;
namespace dcx {
CArg CGameArg;
}
namespace dsx {