| error.h | | error.h | |
| | | | |
| skipping to change at line 310 | | skipping to change at line 310 | |
| std::list<Item> const Messages; | | std::list<Item> const Messages; | |
| bool const PendingFlag; | | bool const PendingFlag; | |
| | | | |
| MsgStack(std::list<Item> const &Messages, bool const &Pendin
g) : | | MsgStack(std::list<Item> const &Messages, bool const &Pendin
g) : | |
| Messages(Messages), PendingFlag(Pending) {}; | | Messages(Messages), PendingFlag(Pending) {}; | |
| }; | | }; | |
| | | | |
| std::list<MsgStack> Stacks; | | std::list<MsgStack> Stacks; | |
| | | | |
| bool InsertErrno(MsgType type, const char* Function, | | bool InsertErrno(MsgType type, const char* Function, | |
|
| const char* Description, va_list &args); | | const char* Description, va_list &args, | |
| | | int const errsv, size_t &msgSize); | |
| bool Insert(MsgType type, const char* Description, | | bool Insert(MsgType type, const char* Description, | |
|
| va_list &args); | | va_list &args, size_t &msgSize); | |
| /*}}
}*/ | | /*}}
}*/ | |
| }; | | }; | |
| /*}}
}*/ | | /*}}
}*/ | |
| | | | |
| // The 'extra-ansi' syntax is used to help with collisions. | | // The 'extra-ansi' syntax is used to help with collisions. | |
| GlobalError *_GetErrorObj(); | | GlobalError *_GetErrorObj(); | |
| #define _error _GetErrorObj() | | #define _error _GetErrorObj() | |
| | | | |
| #endif | | #endif | |
| | | | |
End of changes. 2 change blocks. |
| 2 lines changed or deleted | | 3 lines changed or added | |
|