OSDN Git Service

* exception.cc (PERSONALITY_FUNCTION): Simplify
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / libsupc++ / new_opvnt.cc
index dde0a7c..ad5fbf4 100644 (file)
@@ -1,4 +1,5 @@
 // Boilerplate support routines for -*- C++ -*- dynamic memory management.
+
 // Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation
 //
 // This file is part of GNU CC.
@@ -30,7 +31,7 @@
 #include "new"
 
 void *
-operator new[] (size_t sz, const std::nothrow_t& nothrow) throw()
+operator new[] (std::size_t sz, const std::nothrow_t& nothrow) throw()
 {
   return ::operator new(sz, nothrow);
 }