forked from boostorg/exception
Merge branch 'develop'
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
/.vscode/ipch/*
|
/.vscode/ipch/*
|
||||||
|
/.vscode/settings.json
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
#include <boost/detail/lightweight_test.hpp>
|
#include <boost/detail/lightweight_test.hpp>
|
||||||
#include <boost/detail/workaround.hpp>
|
#include <boost/detail/workaround.hpp>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <ios>
|
||||||
|
|
||||||
typedef boost::error_info<struct my_tag,int> my_info;
|
typedef boost::error_info<struct my_tag,int> my_info;
|
||||||
|
|
||||||
|
@ -41,6 +41,11 @@ boost
|
|||||||
#endif
|
#endif
|
||||||
exit(boost::report_errors());
|
exit(boost::report_errors());
|
||||||
}
|
}
|
||||||
|
void
|
||||||
|
throw_exception(std::exception const & x, boost::source_location const &)
|
||||||
|
{
|
||||||
|
throw_exception(x);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
Reference in New Issue
Block a user