|
From: James W. W. <os...@jw...> - 2005-01-17 20:23:20
|
I guess I can get used to not using the and, or, and not keywords,
maybe they're not standard. Making a class a friend to itself is
bizarre, but maybe it won't come up too often. I'm really worried
about the change below. What was the compiler complaining about?
Looks like standard C++ to me, and certainly seems to be permitted
according to sections 8.5.1 and 12.6.1 of the 1998 C++ standard.
> *** 939,947 ****
> if (labelIter != instanceData->mLabelMap->end())
> {
> ! TOCEntry tocEntry = {
> ! refID,
> ! labelIter->second,
> ! CQ3ObjectRef()
> ! };
> instanceData->mTOC->push_back( tocEntry );
> }
> --- 939,948 ----
> if (labelIter != instanceData->mLabelMap->end())
> {
> ! TOCEntry tocEntry;
> !
> ! tocEntry.refID = refID;
> ! tocEntry.objLocation = labelIter->second;
> ! tocEntry.object = CQ3ObjectRef();
> !
--
<http://www.jwwalker.com/>
|