// Prevent the compiler from warning about an unused variable. For example: // int result = DoSomething(); // RTC_DCHECK(result == 17); // RTC_UNUSED(result); // Note: In most cases it is better to remove the unused variable rather than // suppressing the compiler warning. #ifndef RTC_UNUSED #ifdef __cplusplus #define RTC_UNUSED(x) static_cast<void>(x) #else #define RTC_UNUSED(x) (void)(x) #endif #endif// RTC_UNUSED
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.