mirror of
https://github.com/boostorg/regex.git
synced 2025-07-17 14:22:08 +02:00
51 lines
1.8 KiB
C++
51 lines
1.8 KiB
C++
![]() |
/*
|
||
|
*
|
||
|
* Copyright (c) 1998-2002
|
||
|
* Dr John Maddock
|
||
|
*
|
||
|
* Use, modification and distribution are subject to the
|
||
|
* Boost Software License, Version 1.0. (See accompanying file
|
||
|
* LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* LOCATION: see http://www.boost.org for most recent version.
|
||
|
* FILE: winstances.cpp
|
||
|
* VERSION: see <boost/version.hpp>
|
||
|
* DESCRIPTION: regex unsigned short template instances (MSVC only).
|
||
|
*/
|
||
|
|
||
|
#define BOOST_REGEX_SOURCE
|
||
|
|
||
|
#include <boost/regex/config.hpp>
|
||
|
|
||
|
#if !defined(BOOST_NO_WREGEX) && defined(BOOST_REGEX_HAS_OTHER_WCHAR_T) && !defined(BOOST_REGEX_NO_EXTERNAL_TEMPLATES)
|
||
|
#define BOOST_REGEX_US_INSTANTIATE
|
||
|
|
||
|
#ifdef _DLL_CPPLIB
|
||
|
namespace std{
|
||
|
template _CRTIMP2 bool __cdecl operator==(
|
||
|
const basic_string<unsigned short, char_traits<unsigned short>, allocator<unsigned short> >&,
|
||
|
const basic_string<unsigned short, char_traits<unsigned short>, allocator<unsigned short> >&);
|
||
|
template _CRTIMP2 bool __cdecl operator==(
|
||
|
const unsigned short *,
|
||
|
const basic_string<unsigned short, char_traits<unsigned short>, allocator<unsigned short> >&);
|
||
|
template _CRTIMP2 bool __cdecl operator==(
|
||
|
const basic_string<unsigned short, char_traits<unsigned short>, allocator<unsigned short> >&,
|
||
|
const unsigned short *);
|
||
|
template _CRTIMP2 bool __cdecl operator<(
|
||
|
const basic_string<unsigned short, char_traits<unsigned short>, allocator<unsigned short> >&,
|
||
|
const basic_string<unsigned short, char_traits<unsigned short>, allocator<unsigned short> >&);
|
||
|
template _CRTIMP2 bool __cdecl operator>(
|
||
|
const basic_string<unsigned short, char_traits<unsigned short>, allocator<unsigned short> >&,
|
||
|
const basic_string<unsigned short, char_traits<unsigned short>, allocator<unsigned short> >&);
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#include <boost/regex.hpp>
|
||
|
|
||
|
#endif
|
||
|
|