New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
config.hpp in vendors/XIOS/current/extern/boost/include/boost/algorithm/string – NEMO

source: vendors/XIOS/current/extern/boost/include/boost/algorithm/string/config.hpp @ 3408

Last change on this file since 3408 was 3408, checked in by rblod, 12 years ago

importing initial XIOS vendor drop

  • Property svn:keywords set to Id
File size: 790 bytes
Line 
1//  Boost string_algo library config.hpp header file  ---------------------------//
2
3//  Copyright Pavol Droba 2002-2003.
4//
5// Distributed under the Boost Software License, Version 1.0.
6//    (See accompanying file LICENSE_1_0.txt or copy at
7//          http://www.boost.org/LICENSE_1_0.txt)
8
9//  See http://www.boost.org/ for updates, documentation, and revision history.
10
11#ifndef BOOST_STRING_CONFIG_HPP
12#define BOOST_STRING_CONFIG_HPP
13
14#include <boost/config.hpp>
15#include <boost/detail/workaround.hpp>
16
17#ifdef BOOST_STRING_DEDUCED_TYPENAME
18#   error "macro already defined!"
19#endif
20
21#define BOOST_STRING_TYPENAME BOOST_DEDUCED_TYPENAME
22
23// Metrowerks workaround
24#if BOOST_WORKAROUND(__MWERKS__, <= 0x3003) // 8.x
25#pragma parse_func_templ off
26#endif
27
28#endif  // BOOST_STRING_CONFIG_HPP
Note: See TracBrowser for help on using the repository browser.