std::basic_ios has an operator bool(). In C++11 and later it is explicit, and only allows contextual implicit conversions. However explicit isn't available in C++03 which causes std::istream (et al) to have an implicit conversion to int. This can easily cause ambiguities when calling operator<< and operator>>. This patch uses a "bool-like" type in C++03 to work around this. The "bool-like" type is an arbitrary pointer to member function type. It will not convert to either int or void*, but will convert to bool. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@290750 91177308-0d34-0410-b5e6-96231b3b80d8
33 lines
1017 B
C++
33 lines
1017 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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>
|
|
|
|
// template <class charT, class traits> class basic_ios
|
|
|
|
// operator unspecified-bool-type() const;
|
|
|
|
#include <ios>
|
|
#include <type_traits>
|
|
#include <cassert>
|
|
|
|
int main()
|
|
{
|
|
std::ios ios(0);
|
|
assert(static_cast<bool>(ios) == !ios.fail());
|
|
ios.setstate(std::ios::failbit);
|
|
assert(static_cast<bool>(ios) == !ios.fail());
|
|
static_assert((!std::is_convertible<std::ios, void*>::value), "");
|
|
static_assert((!std::is_convertible<std::ios, int>::value), "");
|
|
static_assert((!std::is_convertible<std::ios const&, int>::value), "");
|
|
#if TEST_STD_VER >= 11
|
|
static_assert((!std::is_convertible<std::ios, bool>::value), "");
|
|
#endif
|
|
}
|