mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 19:29:09 +00:00
Fix a few issues with more strict modern compilers
This commit is contained in:
@ -83,7 +83,11 @@ public:
|
||||
{
|
||||
std::set<OwnedGroup>::iterator it=IFind(grpId);
|
||||
if (it != fGroups.end())
|
||||
(*it).fOwnIt=ownIt;
|
||||
{
|
||||
OwnedGroup grp(it->fGroup, it->fOwnIt);
|
||||
fGroups.erase(it);
|
||||
fGroups.insert(grp);
|
||||
}
|
||||
else
|
||||
{
|
||||
ISetGroupDesc(grpId);
|
||||
|
Reference in New Issue
Block a user