[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Usata-commits] Changes to usata2/src/objects/top-nodes.cpp
From: |
David Lau |
Subject: |
[Usata-commits] Changes to usata2/src/objects/top-nodes.cpp |
Date: |
Tue, 01 Mar 2005 19:27:12 -0500 |
Index: usata2/src/objects/top-nodes.cpp
diff -u usata2/src/objects/top-nodes.cpp:1.9
usata2/src/objects/top-nodes.cpp:1.10
--- usata2/src/objects/top-nodes.cpp:1.9 Tue Jan 25 19:26:33 2005
+++ usata2/src/objects/top-nodes.cpp Wed Mar 2 00:27:11 2005
@@ -10,7 +10,7 @@
// included in the software distribution, or visit
// http://www.fsf.org/licenses/gpl.html.
//
-// $Id: top-nodes.cpp,v 1.9 2005/01/25 19:26:33 skunix Exp $
+// $Id: top-nodes.cpp,v 1.10 2005/03/02 00:27:11 skunix Exp $
#include "top-nodes.hpp"
@@ -33,10 +33,10 @@
}
Object_sp
-GenericNode::get_child(const std::string&child_name)
+GenericNode::get_child(const std::string&child_name)const
{
using namespace std;
- ChildV::iterator it=
+ ChildV::const_iterator it=
find_if(children.begin(), children.end(),
boost::bind(equal_to<string>(),child_name,boost::bind(&Child::first,_1)));
if (it != children.end())
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Usata-commits] Changes to usata2/src/objects/top-nodes.cpp,
David Lau <=