Author: sebor
Date: Fri Aug 11 11:33:20 2006
New Revision: 430850
URL: http://svn.apache.org/viewvc?rev=430850&view=rev
Log:
2006-08-11 Martin Sebor <[EMAIL PROTECTED]>
* allocator.cpp (deallocate): Commented out unused function arguments
to silence HP aCC 3.70 Warning (suggestion) 431: No uses of argument
were detected; it may be possible to remove its declaration.
Modified:
incubator/stdcxx/trunk/tests/src/allocator.cpp
Modified: incubator/stdcxx/trunk/tests/src/allocator.cpp
URL:
http://svn.apache.org/viewvc/incubator/stdcxx/trunk/tests/src/allocator.cpp?rev=430850&r1=430849&r2=430850&view=diff
==============================================================================
--- incubator/stdcxx/trunk/tests/src/allocator.cpp (original)
+++ incubator/stdcxx/trunk/tests/src/allocator.cpp Fri Aug 11 11:33:20 2006
@@ -6,22 +6,21 @@
*
************************************************************************
*
- * Copyright 2006 The Apache Software Foundation or its licensors,
- * as applicable.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed
+ * with this work for additional information regarding copyright
+ * ownership. The ASF licenses this file to you 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
*
- * Copyright 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
+ * 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.
+ * 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.
*
**************************************************************************/
@@ -121,7 +120,7 @@
/* virtual */ void SharedAlloc::
-deallocate (void *ptr, size_t nelems, size_t size)
+deallocate (void *ptr, size_t /* nelems */, size_t /* size */)
{
funcall (m_deallocate);