blob: 0659c1f8f1ae99e69fd82233ed4d16f412430a73 [file] [log] [blame]
Jeff Thompsonef2d5a42013-08-22 19:09:24 -07001// 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
Jeff Thompson3d613fd2013-10-15 15:39:04 -070011#ifndef NDNBOOST_STRING_CONFIG_HPP
12#define NDNBOOST_STRING_CONFIG_HPP
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070013
14#include <ndnboost/config.hpp>
15#include <ndnboost/detail/workaround.hpp>
16
Jeff Thompson3d613fd2013-10-15 15:39:04 -070017#ifdef NDNBOOST_STRING_DEDUCED_TYPENAME
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070018# error "macro already defined!"
19#endif
20
Jeff Thompson3d613fd2013-10-15 15:39:04 -070021#define NDNBOOST_STRING_TYPENAME NDNBOOST_DEDUCED_TYPENAME
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070022
23// Metrowerks workaround
Jeff Thompson3d613fd2013-10-15 15:39:04 -070024#if NDNBOOST_WORKAROUND(__MWERKS__, <= 0x3003) // 8.x
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070025#pragma parse_func_templ off
26#endif
27
Jeff Thompson3d613fd2013-10-15 15:39:04 -070028#endif // NDNBOOST_STRING_CONFIG_HPP