godot/thirdparty/libktx/utils/unused.h

/* -*- tab-width: 4; -*- */
/* vi: set sw=2 ts=4 expandtab: */

/* Copyright 2019-2018 The Khronos Group Inc.
 * SPDX-License-Identifier: Apache-2.0
 */

/* I'm extending this beyond the purpose implied by its name rather than creating
 * a new file to hold the FALLTHROUGH declaration as this
 * file is already included in most places FALLTHROUGH
 * is needed.
 */

#ifndef _UNUSED_H
#define _UNUSED_H

#if (__cplusplus >= 201703L)
#define MAYBE_UNUSED
#elif __GNUC__ || __clang__
  #define MAYBE_UNUSED
#else
  // Boohoo. VC++ has no equivalent
  #define MAYBE_UNUSED
#endif

#define U_ASSERT_ONLY

// For unused parameters of c functions. Portable.
#define UNUSED(x)

#if !__clang__ && __GNUC__ // grumble ... clang ... grumble
#define FALLTHROUGH
#else
#define FALLTHROUGH
#endif

#endif /* UNUSED_H */