2
0
mirror of https://github.com/boostorg/lambda.git synced 2026-01-24 18:02:22 +00:00

bugfix in empty catch blocks

[SVN r14010]
This commit is contained in:
Jaakko Järvi
2002-05-22 19:41:46 +00:00
parent a396be0bf6
commit f329a3bf68

View File

@@ -307,7 +307,7 @@ catch_exception(const lambda_functor<Arg>& a) {
}
// catch and do nothing case.
template <class CatchType, class Arg>
template <class CatchType>
inline const
tagged_lambda_functor<
detail::exception_catch_tag<detail::catch_block<CatchType> >,
@@ -328,7 +328,7 @@ catch_exception() {
null_type
>
>
> (null_type());
> ();
}
// create catch(...) blocks
@@ -349,7 +349,6 @@ catch_all(const lambda_functor<Arg>& a) {
}
// catch(...) and do nothing case.
template <class CatchType, class Arg>
inline const
tagged_lambda_functor<
detail::exception_catch_tag<detail::catch_all_block>,
@@ -370,7 +369,7 @@ catch_all() {
null_type
>
>
> (null_type());
> ();
}
// try_catch functions --------------------------------