[reSIProcate] DUM: enablePrack methods?
I am updating some old app code that used an older resiprocate version.
It did this:
mDum->getMasterProfile()->addSupportedOptionTag(Token(Symbols::C100rel));
which of course hits this assert in 1.9.6:
void
MasterProfile::addSupportedOptionTag(const Token& tag)
{
if (tag == Token(Symbols::C100rel))
{
//use enablePrackUas and enablePrackUac
assert(0);
}
mSupportedOptionTags.push_back(tag);
}
Am I correct in thinking that my app should just not do that anymore? A
quick grep reveals no such routines as enablePrackUas and
enablePrackUac, so at the very least, the comment should be changed.
regards,
-John Gregg