Minor cosmetic changes. Also replaced system call with use of std::cin.get.
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@1134 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
parent
6568cc4a3a
commit
9fe637bf8b
1 changed files with 24 additions and 22 deletions
|
@ -72,7 +72,9 @@ int main( int argc, const char * const argv[] )
|
|||
else
|
||||
cout << "Your compiler does not properly implement thread_local storage for standalone static values." << endl;
|
||||
|
||||
::system( "pause" );
|
||||
::std::cout << "Please press enter key to continue." << ::std::endl;
|
||||
::std::cin.get();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue