22 lines
496 B
C++
22 lines
496 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 getloc()const;
|
||
|
|
||
|
#include <regex>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
#error getloc not implemented
|
||
|
}
|