VirtualBox

Changeset 313 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
Jan 25, 2007 4:19:38 PM (18 years ago)
Author:
vboxsync
Message:

DECLINLINE doesn't work for C++ anylonger.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/hgcm/HGCMThread.cpp

    r1 r313  
    128128
    129129
    130         DECLINLINE(int) Enter (void);
    131         DECLINLINE(void) Leave (void);
     130        inline int Enter (void);
     131        inline void Leave (void);
    132132
    133133        HGCMMsgCore *FetchFreeListHead (void);
     
    323323}
    324324
    325 DECLINLINE(int) HGCMThread::Enter (void)
     325inline int HGCMThread::Enter (void)
    326326{
    327327    int rc = RTCritSectEnter (&m_critsect);
     
    337337}
    338338
    339 DECLINLINE(void) HGCMThread::Leave (void)
     339inline void HGCMThread::Leave (void)
    340340{
    341341    RTCritSectLeave (&m_critsect);
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