VirtualBox

Changeset 11010 in vbox for trunk/include


Ignore:
Timestamp:
Jul 30, 2008 6:59:21 PM (17 years ago)
Author:
vboxsync
Message:

iprt: hrmpf. g++ things external linkage is needed. silly.

Location:
trunk/include/iprt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/autores.h

    r11009 r11010  
    5151 */
    5252template <class T>
    53 DECLINLINE(T) RTAutoResNil(void)
     53inline T RTAutoResNil(void)
    5454{
    5555    AssertFatalMsgFailed(("Unspecialized template!\n"));
     
    6464 */
    6565template <class T>
    66 DECLINLINE(void) RTAutoResDestruct(T aHandle)
     66inline void RTAutoResDestruct(T aHandle)
    6767{
    6868    AssertFatalMsgFailed(("Unspecialized template!\n"));
  • trunk/include/iprt/mem.h

    r11009 r11010  
    382382 */
    383383template <class T>
    384 DECLINLINE(void) RTMemAutoFree(T *aMem)
     384inline void RTMemAutoFree(T *aMem)
    385385{
    386386    RTMemFree(aMem);
     
    396396 */
    397397template <class T>
    398 DECLINLINE(T *) RTMemAutoNil(void)
     398inline T * RTMemAutoNil(void)
    399399{
    400400    return (T *)(NULL);
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