You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2006/03/17 23:44:19 UTC

svn commit: r386746 - /incubator/stdcxx/trunk/include/rw/_tree.h

Author: sebor
Date: Fri Mar 17 14:44:18 2006
New Revision: 386746

URL: http://svn.apache.org/viewcvs?rev=386746&view=rev
Log:
2006-03-17  Martin Sebor  <se...@roguewave.com>

	* _tree.h (_C_make_iter): Removed an unnecessary const qualification.

Modified:
    incubator/stdcxx/trunk/include/rw/_tree.h

Modified: incubator/stdcxx/trunk/include/rw/_tree.h
URL: http://svn.apache.org/viewcvs/incubator/stdcxx/trunk/include/rw/_tree.h?rev=386746&r1=386745&r2=386746&view=diff
==============================================================================
--- incubator/stdcxx/trunk/include/rw/_tree.h (original)
+++ incubator/stdcxx/trunk/include/rw/_tree.h Fri Mar 17 14:44:18 2006
@@ -22,16 +22,22 @@
  *
  ***************************************************************************
  *
- * Copyright (c) 1994-2005 Quovadx,  Inc., acting through its  Rogue Wave
- * Software division. Licensed under the Apache License, Version 2.0 (the
- * "License");  you may  not use this file except  in compliance with the
- * License.    You    may   obtain   a   copy   of    the   License    at
- * http://www.apache.org/licenses/LICENSE-2.0.    Unless   required    by
- * applicable law  or agreed to  in writing,  software  distributed under
- * the License is distributed on an "AS IS" BASIS,  WITHOUT WARRANTIES OR
- * CONDITIONS OF  ANY KIND, either  express or implied.  See  the License
- * for the specific language governing permissions  and limitations under
- * the License.
+ * Copyright 2005-2006 The Apache Software Foundation or its licensors,
+ * as applicable.
+ *
+ * Copyright 1994-2006 Rogue Wave Software.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  * 
  **************************************************************************/
 
@@ -299,7 +305,7 @@
         return iterator (*this, _C_tree_iter (__node));
     }
 
-    const_iterator _C_make_iter (const _C_link_t __node) const {
+    const_iterator _C_make_iter (_C_link_t __node) const {
         return const_iterator (*this, _C_tree_citer (__node));
     }
 
@@ -312,7 +318,7 @@
         return iterator (__node);
     }
 
-    const_iterator _C_make_iter (const _C_link_t __node) const {
+    const_iterator _C_make_iter (_C_link_t __node) const {
         return const_iterator (__node);
     }