mirror of
https://github.com/boostorg/exception.git
synced 2025-07-23 17:17:16 +02:00
fixing an error that caused warnings in diagnostic_information.hpp
[SVN r52355]
This commit is contained in:
@ -23,7 +23,7 @@ boost
|
|||||||
struct
|
struct
|
||||||
enable_boost_exception_overload
|
enable_boost_exception_overload
|
||||||
{
|
{
|
||||||
typedef struct yes { char q[100]; };
|
struct yes { char q[100]; };
|
||||||
typedef char no;
|
typedef char no;
|
||||||
static yes check(exception const *);
|
static yes check(exception const *);
|
||||||
static no check(...);
|
static no check(...);
|
||||||
@ -34,7 +34,7 @@ boost
|
|||||||
struct
|
struct
|
||||||
enable_std_exception_overload
|
enable_std_exception_overload
|
||||||
{
|
{
|
||||||
typedef struct yes { char q[100]; };
|
struct yes { char q[100]; };
|
||||||
typedef char no;
|
typedef char no;
|
||||||
static yes check(std::exception const *);
|
static yes check(std::exception const *);
|
||||||
static no check(...);
|
static no check(...);
|
||||||
|
Reference in New Issue
Block a user