Clear up a C++ compile warning

This commit is contained in:
John Kessenich 2015-07-06 21:02:26 -06:00
Родитель e0603a441e
Коммит ff5abf34a8
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -43,6 +43,8 @@ class TConstUnion {
public:
POOL_ALLOCATOR_NEW_DELETE(GetThreadPoolAllocator())
TConstUnion() : iConst(0), type(EbtInt) { }
void setIConst(int i)
{
iConst = i;