This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

C++0x name clash: invalid_argument


When we're in C++0x mode, there are now two different definitions of the
name "invalid_argument" in namespace std. The first one is the exception
class, which comes from <stdexcept>. The second is an enumerator that
comes from <system_error> (for EINVAL). This causes compilation failures
in the following program to fail under C++0x mode (and is killing my
nightly regression testing of Boost):

#include <stdexcept>
#include <system_error>

int main()
{
  try {
  } catch(std::invalid_argument const&) {
  }
}
	

	- Doug


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]