22 lines
502 B
C++
22 lines
502 B
C++
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
// <regex>
|
||
|
|
||
|
// template <class charT> struct regex_traits;
|
||
|
|
||
|
// locale_type imbue(locale_type l);
|
||
|
|
||
|
#include <regex>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
#error imbue not implemented
|
||
|
}
|