// 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/old-style-cast` used "
      "without `leathers/push`, "
      "see README.txt for more info"
#endif

#if defined(LEATHERS_OLD_STYLE_CAST_)
# error "`leathers/old-style-cast` "
    "already included; see README.txt for more info"
#else
# define LEATHERS_OLD_STYLE_CAST_
#endif

#if (__clang__)
# if __has_warning("-Wold-style-cast")
#  pragma clang diagnostic ignored "-Wold-style-cast"
# endif
#endif

#if (__GNUC__)
# pragma GCC diagnostic ignored "-Wold-style-cast"
#endif
