Changeset 62330 in vbox for trunk/src/libs
- Timestamp:
- Jul 19, 2016 3:10:44 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 108866
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/xpcom/threads/nsAutoLock.h
r1 r62330 151 151 // Not meant to be implemented. This makes it a compiler error to 152 152 // 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*/); 158 156 159 157 // Not meant to be implemented. This makes it a compiler error to 160 158 // 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*/); 165 161 166 162 public: … … 311 307 // Not meant to be implemented. This makes it a compiler error to 312 308 // 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*/); 318 312 319 313 // Not meant to be implemented. This makes it a compiler error to 320 314 // 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*/); 325 317 }; 326 318 … … 378 370 // Not meant to be implemented. This makes it a compiler error to 379 371 // 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*/); 385 375 386 376 // Not meant to be implemented. This makes it a compiler error to 387 377 // 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*/); 392 380 }; 393 381
Note:
See TracChangeset
for help on using the changeset viewer.