Use native Windows assert for MinGW. This also avoids false positive warnings with Clang static analyzer, as the default libcdio assert does return.

From pbatard branch.
This commit is contained in:
R. Bernstein
2012-02-25 19:28:47 -05:00
parent 734c6473b3
commit 385496a24c

View File

@@ -19,7 +19,7 @@
#ifndef __CDIO_ASSERT_H__
#define __CDIO_ASSERT_H__
#if defined(__GNUC__)
#if defined(__GNUC__) && !defined(__MINGW32__)
#if defined(HAVE_CONFIG_H) && !defined(__CDIO_CONFIG_H__)
# include "config.h"