//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // class ios_base // ios_base& hexfloat(ios_base& str); #include #include #include struct testbuf : public std::streambuf {}; int main() { testbuf sb; std::ios ios(&sb); std::ios_base& r = std::hexfloat(ios); assert(&r == &ios); assert(ios.flags() & std::ios::fixed); assert(ios.flags() & std::ios::scientific); }