1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
/****************************************************************************
* Core Library Version 1.7, August 2004
* Copyright (c) 1995-2004 Exact Computation Project
* All rights reserved.
*
* This file is part of CGAL (www.cgal.org).
*
* $URL: https://github.com/CGAL/cgal/blob/v6.1.1/CGAL_Core/include/CGAL/CORE/Config.h $
* $Id: include/CGAL/CORE/Config.h 08b27d3db14 $
* SPDX-License-Identifier: LGPL-3.0-or-later
***************************************************************************/
#ifndef _CORE_CONFIG_H_
#define _CORE_CONFIG_H_
// disable debug
//#define CORE_DISABLE_DEBUG
// disable inline functions
//#define CORE_DISABLE_INLINE
// disable memory pool
//#define CORE_DISABLE_MEMPOOL
// debug reference counting
//#define CORE_RC_DEBUG 1
#include <CGAL/auto_link/CORE.h>
#include <CGAL/export/CORE.h>
#ifdef CGAL_CORE_DEBUG
#define CGAL_CORE_warning_msg(X ,Y) CGAL_warning_msg(X ,Y)
#else
#define CGAL_CORE_warning_msg(X ,Y)
#endif
#endif // _CORE_CONFIG_H_
|