// ---------------------------------------------------------------------- // // bool.cc - Is 'bool' a native type with appropriate truth values? // // History: // 08-Jul-1999 WEB Initial draft, adapted from Blitz++ // 25-Apr-2001 WEB s//"ISOcxx\/ISOcxxSyntax.hh"/ // // ---------------------------------------------------------------------- #include "ISOcxx/ISOcxxSyntax.hh" int foo( bool & b ) { b = false; return 0; } int main() { bool b( true ); return foo( b ); } // main()