svn commit: r352377 - in stable: 11/contrib/libcxxrt 12/contrib/libcxxrt

Dimitry Andric dim at FreeBSD.org
Mon Sep 16 06:01:07 UTC 2019


Author: dim
Date: Mon Sep 16 06:01:06 2019
New Revision: 352377
URL: https://svnweb.freebsd.org/changeset/base/352377

Log:
  MFC r352306:
  
  Include <stdint.h> in unwind-arm.h, since it uses uint32_t and uint64_t
  in various declarations.
  
  Otherwise, depending on how unwind-arm.h is included from other source
  files, the compiler may complain that uint32_t and uint64_t are unknown
  types.

Modified:
  stable/12/contrib/libcxxrt/unwind-arm.h
Directory Properties:
  stable/12/   (props changed)

Changes in other areas also in this revision:
Modified:
  stable/11/contrib/libcxxrt/unwind-arm.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/12/contrib/libcxxrt/unwind-arm.h
==============================================================================
--- stable/12/contrib/libcxxrt/unwind-arm.h	Mon Sep 16 05:28:40 2019	(r352376)
+++ stable/12/contrib/libcxxrt/unwind-arm.h	Mon Sep 16 06:01:06 2019	(r352377)
@@ -20,6 +20,9 @@
  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  */ 
 
+/* For uint32_t and uint64_t */
+#include <stdint.h>
+
 /**
  * ARM-specific unwind definitions.  These are taken from the ARM EHABI
  * specification.


More information about the svn-src-all mailing list