Removed required input from 'rankine_democxx' test

This commit is contained in:
Ray Speth 2012-01-09 17:35:14 +00:00
parent 8955a9f701
commit 7ac1cb4dd4

View file

@ -74,18 +74,9 @@ int openRankine(int np, void* p) {
double efficiency = work/heat_in;
cout << "efficiency = " << efficiency << endl;
#ifdef WIN32
#ifndef CXX_DEMO
cout << "press any key to end" << endl;
char ch;
cin >> ch;
#endif
#endif
return 0;
}
#ifndef CXX_DEMO
int main() {
try {
return openRankine(0, 0);
@ -95,5 +86,3 @@ int main() {
return -1;
}
}
#endif