00001 00002 #ifndef BOOST_MPL_AUX_CONFIG_GCC_HPP_INCLUDED 00003 #define BOOST_MPL_AUX_CONFIG_GCC_HPP_INCLUDED 00004 00005 // Copyright Aleksey Gurtovoy 2004 00006 // 00007 // Distributed under the Boost Software License, Version 1.0. 00008 // (See accompanying file LICENSE_1_0.txt or copy at 00009 // http://www.boost.org/LICENSE_1_0.txt) 00010 // 00011 // See http://www.boost.org/libs/mpl for documentation. 00012 00013 // $Source: /Users/acg/CVSROOT/systemc-2.2/src/sysc/packages/boost/mpl/aux_/config/gcc.hpp,v $ 00014 // $Date: 2006/12/15 20:31:38 $ 00015 // $Revision: 1.1.1.1 $ 00016 00017 #if defined(__GNUC__) && !defined(__EDG_VERSION__) 00018 # define BOOST_MPL_CFG_GCC ((__GNUC__ << 8) | __GNUC_MINOR__) 00019 #else 00020 # define BOOST_MPL_CFG_GCC 0 00021 #endif 00022 00023 #endif // BOOST_MPL_AUX_CONFIG_GCC_HPP_INCLUDED
1.5.5