Changeset 43944 in vbox
- Timestamp:
- Nov 22, 2012 8:16:49 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/EventQueue.cpp
r43943 r43944 26 26 # define USE_XPCOM_QUEUE 27 27 #endif 28 29 #include <new> /* For bad_alloc. */ 28 30 29 31 #include <iprt/err.h> … … 235 237 #endif // VBOX_WITH_XPCOM 236 238 } 237 catch ( bad_alloc &ba)239 catch (std::bad_alloc &) 238 240 { 239 241 return VERR_NO_MEMORY; … … 620 622 return NS_SUCCEEDED(rc); 621 623 } 622 catch ( bad_alloc &ba)624 catch (std::bad_alloc &ba) 623 625 { 624 626 AssertMsgFailed(("Out of memory while allocating memory for event=%p: %s\n",
Note:
See TracChangeset
for help on using the changeset viewer.