diff options
Diffstat (limited to 'libcxx/test/input.output/iostreams.base/std.ios.manip/floatfield.manip/hexfloat.pass.cpp')
-rw-r--r-- | libcxx/test/input.output/iostreams.base/std.ios.manip/floatfield.manip/hexfloat.pass.cpp | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/libcxx/test/input.output/iostreams.base/std.ios.manip/floatfield.manip/hexfloat.pass.cpp b/libcxx/test/input.output/iostreams.base/std.ios.manip/floatfield.manip/hexfloat.pass.cpp deleted file mode 100644 index 2920cca83d0..00000000000 --- a/libcxx/test/input.output/iostreams.base/std.ios.manip/floatfield.manip/hexfloat.pass.cpp +++ /dev/null @@ -1,30 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is dual licensed under the MIT and the University of Illinois Open -// Source Licenses. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -// <ios> - -// class ios_base - -// ios_base& hexfloat(ios_base& str); - -#include <ios> -#include <streambuf> -#include <cassert> - -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); -} |