when i run my code i get one, and i can't tell which part of my code is faulty as VC++ points me to this code from <xlocale>
_CRTIMP2_PURE facet *__CLR_OR_THIS_CALL _Decref()
{ // safely decrement the reference count, return this when dead
_BEGIN_LOCK(_LOCK_LOCALE)
if (0 < _Refs && _Refs < (size_t)(-1))
--_Refs;
return (_Refs == 0 ? this : 0);
_END_LOCK()
}
if anyone could help me to find the source of the problem it would be appreciated (:
i can post my code if you want me to