Kaydet (Commit) 8cbc68a1 authored tarafından Oliver Bolte's avatar Oliver Bolte

INTEGRATION: CWS native76 (1.3.12); FILE MERGED

2007/01/11 06:25:28 lla 1.3.12.1: #i72675# warning free test code
üst 1f7d1607
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
* *
* $RCSfile: test_string.cxx,v $ * $RCSfile: test_string.cxx,v $
* *
* $Revision: 1.3 $ * $Revision: 1.4 $
* *
* last change: $Author: obo $ $Date: 2006-09-17 03:48:50 $ * last change: $Author: obo $ $Date: 2007-01-22 14:37:52 $
* *
* The Contents of this file are made available subject to * The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
...@@ -105,9 +105,9 @@ bool isInCurrentEnvironment(std::string const& _sString) ...@@ -105,9 +105,9 @@ bool isInCurrentEnvironment(std::string const& _sString)
// ----------------------------------- Main ----------------------------------- // ----------------------------------- Main -----------------------------------
#if (defined UNX) || (defined OS2) #if (defined UNX) || (defined OS2)
int main( int argc, char* argv[] ) int main( int /* argc */, char* /* argv */ [] )
#else #else
int _cdecl main( int argc, char* argv[] ) int _cdecl main( int /* argc */ , char* /* argv */ [] )
#endif #endif
{ {
string sLine1 = "osl_Socket.ctor.ctors_001"; string sLine1 = "osl_Socket.ctor.ctors_001";
...@@ -135,4 +135,12 @@ int _cdecl main( int argc, char* argv[] ) ...@@ -135,4 +135,12 @@ int _cdecl main( int argc, char* argv[] )
} }
// cout << "rest string: " << sRest << endl; // cout << "rest string: " << sRest << endl;
int nCount = 10;
do {
cout << nCount << endl;
nCount --;
}
while (nCount >= 0);
cout << nCount << endl;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment