VirtualBox

Changeset 62330 in vbox for trunk/src/libs


Ignore:
Timestamp:
Jul 19, 2016 3:10:44 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
108866
Message:

xpcom: for nsAutoLock and friends don't provide fake implementations
for default and copy constructors, and operators =, new and delete.
Constify reference arguments where applicable.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/libs/xpcom18a4/xpcom/threads/nsAutoLock.h

    r1 r62330  
    151151    // Not meant to be implemented. This makes it a compiler error to
    152152    // construct or assign an nsAutoLock object incorrectly.
    153     nsAutoLock(void) {}
    154     nsAutoLock(nsAutoLock& /*aLock*/) {}
    155     nsAutoLock& operator =(nsAutoLock& /*aLock*/) {
    156         return *this;
    157     }
     153    nsAutoLock(void);
     154    nsAutoLock(const nsAutoLock& /*aLock*/);
     155    nsAutoLock& operator =(const nsAutoLock& /*aLock*/);
    158156
    159157    // Not meant to be implemented. This makes it a compiler error to
    160158    // attempt to create an nsAutoLock object on the heap.
    161     static void* operator new(size_t /*size*/) CPP_THROW_NEW {
    162         return nsnull;
    163     }
    164     static void operator delete(void* /*memory*/) {}
     159    static void* operator new(size_t /*size*/) CPP_THROW_NEW;
     160    static void operator delete(void* /*memory*/);
    165161
    166162public:
     
    311307    // Not meant to be implemented. This makes it a compiler error to
    312308    // construct or assign an nsAutoLock object incorrectly.
    313     nsAutoMonitor(void) {}
    314     nsAutoMonitor(nsAutoMonitor& /*aMon*/) {}
    315     nsAutoMonitor& operator =(nsAutoMonitor& /*aMon*/) {
    316         return *this;
    317     }
     309    nsAutoMonitor(void);
     310    nsAutoMonitor(const nsAutoMonitor& /*aMon*/);
     311    nsAutoMonitor& operator =(const nsAutoMonitor& /*aMon*/);
    318312
    319313    // Not meant to be implemented. This makes it a compiler error to
    320314    // attempt to create an nsAutoLock object on the heap.
    321     static void* operator new(size_t /*size*/) CPP_THROW_NEW {
    322         return nsnull;
    323     }
    324     static void operator delete(void* /*memory*/) {}
     315    static void* operator new(size_t /*size*/) CPP_THROW_NEW;
     316    static void operator delete(void* /*memory*/);
    325317};
    326318
     
    378370    // Not meant to be implemented. This makes it a compiler error to
    379371    // construct or assign an nsAutoLock object incorrectly.
    380     nsAutoCMonitor(void) {}
    381     nsAutoCMonitor(nsAutoCMonitor& /*aMon*/) {}
    382     nsAutoCMonitor& operator =(nsAutoCMonitor& /*aMon*/) {
    383         return *this;
    384     }
     372    nsAutoCMonitor(void);
     373    nsAutoCMonitor(const nsAutoCMonitor& /*aMon*/);
     374    nsAutoCMonitor& operator =(const nsAutoCMonitor& /*aMon*/);
    385375
    386376    // Not meant to be implemented. This makes it a compiler error to
    387377    // attempt to create an nsAutoLock object on the heap.
    388     static void* operator new(size_t /*size*/) CPP_THROW_NEW {
    389         return nsnull;
    390     }
    391     static void operator delete(void* /*memory*/) {}
     378    static void* operator new(size_t /*size*/) CPP_THROW_NEW;
     379    static void operator delete(void* /*memory*/);
    392380};
    393381
Note: See TracChangeset for help on using the changeset viewer.

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