// ---------------------------------------------------------------------- // // bitset.cc - Do we have basic bitset<> support? // // History: // 02-Oct-2000 WEB Initial draft // 25-Apr-2001 WEB s//"ISOcxx\/ISOcxxSyntax.hh"/ // // ---------------------------------------------------------------------- #include "ISOcxx/ISOcxxSyntax.hh" #include int main() { std::bitset<10> bs; return bs.count(); } // main()