[Scummvm-cvs-logs] SF.net SVN: scummvm:[50718] tools/branches/gsoc2010-decompiler/decompiler

pidgeot at users.sourceforge.net pidgeot at users.sourceforge.net
Tue Jul 6 02:08:29 CEST 2010


Revision: 50718
          http://scummvm.svn.sourceforge.net/scummvm/?rev=50718&view=rev
Author:   pidgeot
Date:     2010-07-06 00:08:28 +0000 (Tue, 06 Jul 2010)

Log Message:
-----------
Fix Doxygen comments

Modified Paths:
--------------
    tools/branches/gsoc2010-decompiler/decompiler/control_flow.h
    tools/branches/gsoc2010-decompiler/decompiler/graph.h

Modified: tools/branches/gsoc2010-decompiler/decompiler/control_flow.h
===================================================================
--- tools/branches/gsoc2010-decompiler/decompiler/control_flow.h	2010-07-06 00:05:37 UTC (rev 50717)
+++ tools/branches/gsoc2010-decompiler/decompiler/control_flow.h	2010-07-06 00:08:28 UTC (rev 50718)
@@ -108,7 +108,7 @@
 	 * @param condGr The group containing the respective loop condition.
 	 * @returns True if the validation succeeded, false if it did not.
 	 */
-	bool validateBreakOrContinue(GroupPtr gr, GroupPtr targetGr);
+	bool validateBreakOrContinue(GroupPtr gr, GroupPtr condGr);
 
 	/**
 	 * Detects if and else blocks.

Modified: tools/branches/gsoc2010-decompiler/decompiler/graph.h
===================================================================
--- tools/branches/gsoc2010-decompiler/decompiler/graph.h	2010-07-06 00:05:37 UTC (rev 50717)
+++ tools/branches/gsoc2010-decompiler/decompiler/graph.h	2010-07-06 00:08:28 UTC (rev 50718)
@@ -66,8 +66,8 @@
 struct Group {
 private:
   long _refCount;	///< Reference count used for boost::intrusive_ptr.
-  friend void ::boost::intrusive_ptr_add_ref(Group *p);
-  friend void ::boost::intrusive_ptr_release(Group *p);
+  friend void ::boost::intrusive_ptr_add_ref(Group *p); ///< Allow access by reference counting methods in boost namespace.
+  friend void ::boost::intrusive_ptr_release(Group *p); ///< Allow access by reference counting methods in boost namespace.
 
 public:	
 	ConstInstIterator _start; ///< First instruction in the group.
@@ -259,7 +259,7 @@
 		out << "[arrowhead=\"" << get(name, v) << "\"]";
 	}
 private:
-	Name name;
+	Name name; ///< The name of the attribute to use.
 };
 
 /**


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list