CRLF -> LF fix

This commit is contained in:
Reijo Tomperi 2009-12-05 22:17:58 +02:00
parent e9b342c56b
commit 5a40a8c2dd
1 changed files with 20 additions and 20 deletions

View File

@ -1429,26 +1429,26 @@ private:
void template_default_type() void template_default_type()
{ {
const char code[] = "template <typename T, typename U=T>\n" const char code[] = "template <typename T, typename U=T>\n"
"class A\n" "class A\n"
"{\n" "{\n"
"public:\n" "public:\n"
" void foo() {\n" " void foo() {\n"
" int a;\n" " int a;\n"
" a = static_cast<U>(a);\n" " a = static_cast<U>(a);\n"
" }\n" " }\n"
"};\n" "};\n"
"\n" "\n"
"template <typename T>\n" "template <typename T>\n"
"class B\n" "class B\n"
"{\n" "{\n"
"protected:\n" "protected:\n"
" A<int> a;\n" " A<int> a;\n"
"};\n" "};\n"
"\n" "\n"
"class C\n" "class C\n"
" : public B<int>\n" " : public B<int>\n"
"{\n" "{\n"
"};\n"; "};\n";
errout.str(""); errout.str("");