Howard Hinnant | 7050530 | 2010-06-17 00:34:59 +0000 | [diff] [blame^] | 1 | // -*- C++ -*- |
| 2 | //===-------------------------- algorithm ---------------------------------===// |
| 3 | // |
| 4 | // The LLVM Compiler Infrastructure |
| 5 | // |
| 6 | // This file is distributed under the University of Illinois Open Source |
| 7 | // License. See LICENSE.TXT for details. |
| 8 | // |
| 9 | //===----------------------------------------------------------------------===// |
| 10 | |
| 11 | // <regex> |
| 12 | |
| 13 | // template <class charT> struct regex_traits; |
| 14 | |
| 15 | // regex_traits(); |
| 16 | |
| 17 | #include <regex> |
| 18 | |
| 19 | int main() |
| 20 | { |
| 21 | std::regex_traits<char> t1(); |
| 22 | std::regex_traits<wchar_t> t2(); |
| 23 | } |