Revision: 49904
          http://brlcad.svn.sourceforge.net/brlcad/?rev=49904&view=rev
Author:   n_reed
Date:     2012-04-03 22:43:02 +0000 (Tue, 03 Apr 2012)
Log Message:
-----------
match SCL git style

Modified Paths:
--------------
    brlcad/trunk/src/other/step/src/clstepcore/SingleLinkList.cc
    brlcad/trunk/src/other/step/src/clstepcore/SingleLinkList.inline.cc

Modified: brlcad/trunk/src/other/step/src/clstepcore/SingleLinkList.cc
===================================================================
--- brlcad/trunk/src/other/step/src/clstepcore/SingleLinkList.cc        
2012-04-03 21:56:30 UTC (rev 49903)
+++ brlcad/trunk/src/other/step/src/clstepcore/SingleLinkList.cc        
2012-04-03 22:43:02 UTC (rev 49904)
@@ -10,12 +10,9 @@
 * and is not subject to copyright.
 */
 
-/* $Id: SingleLinkList.cc,v 3.0.1.4 1997/11/05 21:59:23 sauderd DP3.1 $ */
-
 #include <SingleLinkList.h>
 
-void
-SingleLinkList::DeleteFollowingNodes( SingleLinkNode * item ) {
+void SingleLinkList::DeleteFollowingNodes( SingleLinkNode * item ) {
     if( head ) {
         SingleLinkNode * trailer = 0;
         SingleLinkNode * leader = head;
@@ -46,8 +43,7 @@
     }
 }
 
-void
-SingleLinkList::AppendNode( SingleLinkNode * item ) {
+void SingleLinkList::AppendNode( SingleLinkNode * item ) {
     if( head )  {
         tail -> next = item;
         tail = item;
@@ -57,8 +53,7 @@
     item->owner = this;
 }
 
-void
-SingleLinkList::DeleteNode( SingleLinkNode * item ) {
+void SingleLinkList::DeleteNode( SingleLinkNode * item ) {
     if( head ) {
         SingleLinkNode * trailer = 0;
         SingleLinkNode * leader = head;

Modified: brlcad/trunk/src/other/step/src/clstepcore/SingleLinkList.inline.cc
===================================================================
--- brlcad/trunk/src/other/step/src/clstepcore/SingleLinkList.inline.cc 
2012-04-03 21:56:30 UTC (rev 49903)
+++ brlcad/trunk/src/other/step/src/clstepcore/SingleLinkList.inline.cc 
2012-04-03 22:43:02 UTC (rev 49904)
@@ -10,8 +10,6 @@
 * and is not subject to copyright.
 */
 
-/* $Id: SingleLinkList.inline.cc,v 3.0.1.2 1997/11/05 21:59:23 sauderd DP3.1 $ 
*/
-
 #include <SingleLinkList.h>
 #include <iostream>
 
@@ -28,8 +26,7 @@
     Empty();
 }
 
-void
-SingleLinkList::Empty() {
+void SingleLinkList::Empty() {
     SingleLinkNode * tmp = head;
     while( tmp ) {
         tmp = head -> NextNode();
@@ -38,16 +35,14 @@
     }
 }
 
-SingleLinkNode *
-SingleLinkList::NewNode() {
+SingleLinkNode * SingleLinkList::NewNode() {
     //  defined in subtypes
     std::cerr << "\n\n******BUG****** a virtually defined function should \n"
               << "be called for SingleLinkList::NewNode()\n\n";
     return new SingleLinkNode();
 }
 
-SingleLinkNode *
-SingleLinkList::GetHead() const {
+SingleLinkNode * SingleLinkList::GetHead() const {
     return ( head );
 }
 

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


------------------------------------------------------------------------------
Better than sec? Nothing is better than sec when it comes to
monitoring Big Data applications. Try Boundary one-second 
resolution app monitoring today. Free.
http://p.sf.net/sfu/Boundary-dev2dev
_______________________________________________
BRL-CAD Source Commits mailing list
brlcad-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to