diff mbox

[v3] Bits of libstdc++/51018

Message ID 4EB888FF.7050907@oracle.com
State New
Headers show

Commit Message

Paolo Carlini Nov. 8, 2011, 1:42 a.m. UTC
Hi,

committed to mainline.

Paolo.

///////////////////
2011-11-07  Paolo Carlini  <paolo.carlini@oracle.com>

	PR libstdc++/51018
	* include/profile/impl/profiler_node.h (__stack_hash::
	operator()(__stack_t)): Just use std::size_t everywhere.
diff mbox

Patch

Index: include/profile/impl/profiler_node.h
===================================================================
--- include/profile/impl/profiler_node.h	(revision 181146)
+++ include/profile/impl/profiler_node.h	(working copy)
@@ -1,6 +1,6 @@ 
 // -*- C++ -*-
 //
-// Copyright (C) 2009, 2010 Free Software Foundation, Inc.
+// Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the terms
@@ -102,10 +102,10 @@ 
       if (!__s) 
 	return 0;
 
-      __UINTPTR_TYPE__ __index = 0;
+      std::size_t __index = 0;
       __stack_npt::const_iterator __it;
       for (__it = __s->begin(); __it != __s->end(); ++__it)
-	__index += reinterpret_cast<__UINTPTR_TYPE__>(*__it);
+	__index += reinterpret_cast<std::size_t>(*__it);
       return __index;
     }