VirtualBox

Changeset 85187 in vbox for trunk/src/VBox/VMM


Ignore:
Timestamp:
Jul 10, 2020 1:24:00 PM (5 years ago)
Author:
vboxsync
Message:

VMM/VMMR0.cpp: Workaround for Clang 11 nothrow weirdness. bugref:9794

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR0/VMMR0.cpp

    r84458 r85187  
    148148/** Drag in necessary library bits.
    149149 * The runtime lives here (in VMMR0.r0) and VBoxDD*R0.r0 links against us. */
    150 PFNRT g_VMMR0Deps[] =
    151 {
    152     (PFNRT)RTCrc32,
    153     (PFNRT)RTOnce,
     150struct CLANG11WEIRDNOTHROW { PFNRT pfn; } g_VMMR0Deps[] =
     151{
     152    { (PFNRT)RTCrc32 },
     153    { (PFNRT)RTOnce },
    154154#if defined(RT_ARCH_X86) && (defined(RT_OS_SOLARIS) || defined(RT_OS_FREEBSD))
    155     (PFNRT)__udivdi3,
    156     (PFNRT)__umoddi3,
    157 #endif
    158     NULL
     155    { (PFNRT)__udivdi3 },
     156    { (PFNRT)__umoddi3 },
     157#endif
     158    { NULL }
    159159};
    160160
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette