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:
rich_sposato 2011-10-03 05:05:41 +00:00
parent 6568cc4a3a
commit 9fe637bf8b

View file

@ -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;
}