cat t.cpp && gcc -D_RWCONFIG=12d -I../../include
-I./../../../../include -I./../../../../include/ansi t.cpp
#include <iostream>
using namespace std;
int main () {
bool b;
b=true;
cout << boolalpha << b << endl;
cout << noboolalpha << b << endl;
return 0;
}
t.cpp: In function `int main()':
t.cpp:7: `boolalpha' undeclared (first use this function)
t.cpp:7: (Each undeclared identifier is reported only once for each
function it
appears in.)
t.cpp:8: `noboolalpha' undeclared (first use this function)
problem first appeared when using sourcepro ed6 and also appears true
for ed9.
Yu (Scott) Zhong