// This file generated automatically:
// https://github.com/ruslo/sugar/wiki/Cross-platform-warning-suppression

// Copyright (c) 2014, Ruslan Baratov
// All rights reserved.

#if !defined(LEATHERS_PUSH_)
# error "`leathers/undef` used "
      "without `leathers/push`, "
      "see README.txt for more info"
#endif

#if defined(LEATHERS_UNDEF_)
# error "`leathers/undef` "
    "already included; see README.txt for more info"
#else
# define LEATHERS_UNDEF_
#endif

#if (__clang__)
# if __has_warning("-Wundef")
#  pragma clang diagnostic ignored "-Wundef"
# endif
#endif

#if (__GNUC__)
# pragma GCC diagnostic ignored "-Wundef"
#endif

#if (_MSC_VER)
# pragma warning(disable: 4668)
#endif
