Merge [53520] from the trunk

[SVN r53909]
This commit is contained in:
Steven Watanabe
2009-06-14 22:56:08 +00:00
parent 60cd5a0500
commit 6076f5a18e

View File

@ -130,7 +130,7 @@
string str1("command.com"); string str1("command.com");
cout cout
<< str1 << str1
<< is_executable("command.com")? "is": "is not" << (is_executable("command.com")? "is": "is not")
<< "an executable" << "an executable"
<< endl; // prints "command.com is an executable" << endl; // prints "command.com is an executable"
@ -138,7 +138,7 @@
char text1[]="hello world!"; char text1[]="hello world!";
cout cout
<< text1 << text1
<< all( text1, is_lower() )? "is": "is not" << (all( text1, is_lower() )? "is": "is not")
<< " written in the lower case" << " written in the lower case"
<< endl; // prints "hello world! is written in the lower case" << endl; // prints "hello world! is written in the lower case"
</programlisting> </programlisting>