Changeset 17911 in vbox for trunk/include/VBox
- Timestamp:
- Mar 16, 2009 10:30:55 AM (16 years ago)
- Location:
- trunk/include/VBox/com
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/ErrorInfo.h
r13856 r17911 271 271 protected: 272 272 273 ErrorInfo (bool aDummy)273 ErrorInfo (bool /* aDummy */) 274 274 : mIsBasicAvailable (false), mIsFullAvailable (false) 275 275 , mResultCode (S_OK) -
trunk/include/VBox/com/SupportErrorInfo.h
r14556 r17911 7 7 8 8 /* 9 * Copyright (C) 2008 Sun Microsystems, Inc.9 * Copyright (C) 2008-2009 Sun Microsystems, Inc. 10 10 * 11 11 * This file is part of VirtualBox Open Source Edition (OSE), as … … 149 149 } 150 150 151 MultiResult &operator= (const MultiResult & aThat)151 MultiResult &operator= (const MultiResult & /* aThat */) 152 152 { 153 153 /* We need this copy constructor only for GCC that wants to have 154 154 * it in case of expressions like |MultiResult rc = E_FAIL;|. But 155 155 * we assert since the optimizer should actually avoid the 156 * temporary and call the other constructor directly instead */156 * temporary and call the other constructor directly instead. */ 157 157 AssertFailed(); 158 158 return *this; -
trunk/include/VBox/com/ptr.h
r13856 r17911 87 87 protected: 88 88 89 static void addref (C *p) {}90 static void release (C * p) {}89 static void addref (C * /* p */) {} 90 static void release (C * /* p */) {} 91 91 }; 92 92
Note:
See TracChangeset
for help on using the changeset viewer.