Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 31, 2010, 11:19:49 PM (14 years ago)
Author:
landauf
Message:

fixed the remaining doxygen warnings.

there are still 3 possible cases which produce a warning, but I can't fix them and they are all irrelevant:

  • if you declare an argument completion function
  • if you use an argument completion function
  • if you declare a console command and pass a value which contains "::" (for example KeybindMode::OnHold or AccessLevel::Master)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/doc/src/libraries/network/GamestateClient.cc

    r7163 r7300  
    105105  * @return iterator pointing to the next object in the list
    106106  */
    107   void GamestateClient::removeObject(ObjectList<Synchronisable>::iterator &it) {
    108     ObjectList<Synchronisable>::iterator temp=it;
     107  void GamestateClient::removeObject(ObjectListIterator<Synchronisable> &it) {
     108    ObjectListIterator<Synchronisable> temp=it;
    109109    ++it;
    110110    temp->destroy(); // or delete?
Note: See TracChangeset for help on using the changeset viewer.