/src/openexr/src/lib/Iex/IexBaseExc.h
Line | Count | Source (jump to first uncovered line) |
1 | | // |
2 | | // SPDX-License-Identifier: BSD-3-Clause |
3 | | // Copyright (c) Contributors to the OpenEXR Project. |
4 | | // |
5 | | |
6 | | #ifndef INCLUDED_IEXBASEEXC_H |
7 | | #define INCLUDED_IEXBASEEXC_H |
8 | | |
9 | | #include "IexExport.h" |
10 | | #include "IexNamespace.h" |
11 | | |
12 | | //---------------------------------------------------------- |
13 | | // |
14 | | // A general exception base class, and a few |
15 | | // useful exceptions derived from the base class. |
16 | | // |
17 | | //---------------------------------------------------------- |
18 | | |
19 | | #include <exception> |
20 | | #include <sstream> |
21 | | #include <string> |
22 | | |
23 | | IEX_INTERNAL_NAMESPACE_HEADER_ENTER |
24 | | |
25 | | //------------------------------- |
26 | | // Our most basic exception class |
27 | | //------------------------------- |
28 | | |
29 | | class IEX_EXPORT_TYPE BaseExc : public std::exception |
30 | | { |
31 | | public: |
32 | | //---------------------------- |
33 | | // Constructors and destructor |
34 | | //---------------------------- |
35 | | |
36 | | IEX_EXPORT BaseExc (const char* s = nullptr); |
37 | | IEX_EXPORT BaseExc (const std::string& s); |
38 | | IEX_EXPORT BaseExc (std::string&& s); // not noexcept because of stacktrace |
39 | | IEX_EXPORT BaseExc (std::stringstream& s); |
40 | | |
41 | | IEX_EXPORT BaseExc (const BaseExc& be); |
42 | | IEX_EXPORT BaseExc (BaseExc&& be) noexcept; |
43 | | IEX_EXPORT virtual ~BaseExc () noexcept; |
44 | | |
45 | | IEX_EXPORT BaseExc& operator= (const BaseExc& be); |
46 | | IEX_EXPORT BaseExc& operator= (BaseExc&& be) noexcept; |
47 | | |
48 | | //--------------------------------------------------- |
49 | | // what() method -- e.what() returns _message.c_str() |
50 | | //--------------------------------------------------- |
51 | | |
52 | | IEX_EXPORT virtual const char* what () const noexcept; |
53 | | |
54 | | //-------------------------------------------------- |
55 | | // Convenient methods to change the exception's text |
56 | | //-------------------------------------------------- |
57 | | |
58 | | IEX_EXPORT BaseExc& assign (std::stringstream& s); // assign (s.str()) |
59 | | IEX_EXPORT BaseExc& operator= (std::stringstream& s); |
60 | | |
61 | | IEX_EXPORT BaseExc& append (std::stringstream& s); // append (s.str()) |
62 | | IEX_EXPORT BaseExc& operator+= (std::stringstream& s); |
63 | | |
64 | | //-------------------------------------------------- |
65 | | // These methods from the base class get obscured by |
66 | | // the definitions above. |
67 | | //-------------------------------------------------- |
68 | | |
69 | | IEX_EXPORT BaseExc& assign (const char* s); |
70 | | IEX_EXPORT BaseExc& operator= (const char* s); |
71 | | |
72 | | IEX_EXPORT BaseExc& append (const char* s); |
73 | | IEX_EXPORT BaseExc& operator+= (const char* s); |
74 | | |
75 | | //--------------------------------------------------- |
76 | | // Access to the string representation of the message |
77 | | //--------------------------------------------------- |
78 | | |
79 | | IEX_EXPORT const std::string& message () const noexcept; |
80 | | |
81 | | //-------------------------------------------------- |
82 | | // Stack trace for the point at which the exception |
83 | | // was thrown. The stack trace will be an empty |
84 | | // string unless a working stack-tracing routine |
85 | | // has been installed (see below, setStackTracer()). |
86 | | //-------------------------------------------------- |
87 | | |
88 | | IEX_EXPORT const std::string& stackTrace () const noexcept; |
89 | | |
90 | | private: |
91 | | std::string _message; |
92 | | std::string _stackTrace; |
93 | | }; |
94 | | |
95 | | //----------------------------------------------------- |
96 | | // A macro to save typing when declararing an exception |
97 | | // class derived directly or indirectly from BaseExc: |
98 | | //----------------------------------------------------- |
99 | | |
100 | | #define DEFINE_EXC_EXP(exp, name, base) \ |
101 | | class IEX_EXPORT_TYPE name : public base \ |
102 | | { \ |
103 | | public: \ |
104 | | exp name (); \ |
105 | | exp name (const char* text); \ |
106 | | exp name (const std::string& text); \ |
107 | | exp name (std::string&& text); \ |
108 | | exp name (std::stringstream& text); \ |
109 | | exp name (const name& other); \ |
110 | | exp name (name&& other) noexcept; \ |
111 | | exp name& operator= (name& other); \ |
112 | | exp name& operator= (name&& other) noexcept; \ |
113 | | exp ~name () noexcept; \ |
114 | | }; |
115 | | |
116 | | #define DEFINE_EXC_EXP_IMPL(exp, name, base) \ |
117 | 0 | exp name::name () : base () \ |
118 | 0 | {} \ Unexecuted instantiation: Iex_3_3::ArgExc::ArgExc() Unexecuted instantiation: Iex_3_3::LogicExc::LogicExc() Unexecuted instantiation: Iex_3_3::InputExc::InputExc() Unexecuted instantiation: Iex_3_3::IoExc::IoExc() Unexecuted instantiation: Iex_3_3::MathExc::MathExc() Unexecuted instantiation: Iex_3_3::ErrnoExc::ErrnoExc() Unexecuted instantiation: Iex_3_3::NoImplExc::NoImplExc() Unexecuted instantiation: Iex_3_3::NullExc::NullExc() Unexecuted instantiation: Iex_3_3::TypeExc::TypeExc() Unexecuted instantiation: Iex_3_3::EpermExc::EpermExc() Unexecuted instantiation: Iex_3_3::EnoentExc::EnoentExc() Unexecuted instantiation: Iex_3_3::EsrchExc::EsrchExc() Unexecuted instantiation: Iex_3_3::EintrExc::EintrExc() Unexecuted instantiation: Iex_3_3::EioExc::EioExc() Unexecuted instantiation: Iex_3_3::EnxioExc::EnxioExc() Unexecuted instantiation: Iex_3_3::E2bigExc::E2bigExc() Unexecuted instantiation: Iex_3_3::EnoexecExc::EnoexecExc() Unexecuted instantiation: Iex_3_3::EbadfExc::EbadfExc() Unexecuted instantiation: Iex_3_3::EchildExc::EchildExc() Unexecuted instantiation: Iex_3_3::EagainExc::EagainExc() Unexecuted instantiation: Iex_3_3::EnomemExc::EnomemExc() Unexecuted instantiation: Iex_3_3::EaccesExc::EaccesExc() Unexecuted instantiation: Iex_3_3::EfaultExc::EfaultExc() Unexecuted instantiation: Iex_3_3::EnotblkExc::EnotblkExc() Unexecuted instantiation: Iex_3_3::EbusyExc::EbusyExc() Unexecuted instantiation: Iex_3_3::EexistExc::EexistExc() Unexecuted instantiation: Iex_3_3::ExdevExc::ExdevExc() Unexecuted instantiation: Iex_3_3::EnodevExc::EnodevExc() Unexecuted instantiation: Iex_3_3::EnotdirExc::EnotdirExc() Unexecuted instantiation: Iex_3_3::EisdirExc::EisdirExc() Unexecuted instantiation: Iex_3_3::EinvalExc::EinvalExc() Unexecuted instantiation: Iex_3_3::EnfileExc::EnfileExc() Unexecuted instantiation: Iex_3_3::EmfileExc::EmfileExc() Unexecuted instantiation: Iex_3_3::EnottyExc::EnottyExc() Unexecuted instantiation: Iex_3_3::EtxtbsyExc::EtxtbsyExc() Unexecuted instantiation: Iex_3_3::EfbigExc::EfbigExc() Unexecuted instantiation: Iex_3_3::EnospcExc::EnospcExc() Unexecuted instantiation: Iex_3_3::EspipeExc::EspipeExc() Unexecuted instantiation: Iex_3_3::ErofsExc::ErofsExc() Unexecuted instantiation: Iex_3_3::EmlinkExc::EmlinkExc() Unexecuted instantiation: Iex_3_3::EpipeExc::EpipeExc() Unexecuted instantiation: Iex_3_3::EdomExc::EdomExc() Unexecuted instantiation: Iex_3_3::ErangeExc::ErangeExc() Unexecuted instantiation: Iex_3_3::EnomsgExc::EnomsgExc() Unexecuted instantiation: Iex_3_3::EidrmExc::EidrmExc() Unexecuted instantiation: Iex_3_3::EchrngExc::EchrngExc() Unexecuted instantiation: Iex_3_3::El2nsyncExc::El2nsyncExc() Unexecuted instantiation: Iex_3_3::El3hltExc::El3hltExc() Unexecuted instantiation: Iex_3_3::El3rstExc::El3rstExc() Unexecuted instantiation: Iex_3_3::ElnrngExc::ElnrngExc() Unexecuted instantiation: Iex_3_3::EunatchExc::EunatchExc() Unexecuted instantiation: Iex_3_3::EnocsiExc::EnocsiExc() Unexecuted instantiation: Iex_3_3::El2hltExc::El2hltExc() Unexecuted instantiation: Iex_3_3::EdeadlkExc::EdeadlkExc() Unexecuted instantiation: Iex_3_3::EnolckExc::EnolckExc() Unexecuted instantiation: Iex_3_3::EbadeExc::EbadeExc() Unexecuted instantiation: Iex_3_3::EbadrExc::EbadrExc() Unexecuted instantiation: Iex_3_3::ExfullExc::ExfullExc() Unexecuted instantiation: Iex_3_3::EnoanoExc::EnoanoExc() Unexecuted instantiation: Iex_3_3::EbadrqcExc::EbadrqcExc() Unexecuted instantiation: Iex_3_3::EbadsltExc::EbadsltExc() Unexecuted instantiation: Iex_3_3::EdeadlockExc::EdeadlockExc() Unexecuted instantiation: Iex_3_3::EbfontExc::EbfontExc() Unexecuted instantiation: Iex_3_3::EnostrExc::EnostrExc() Unexecuted instantiation: Iex_3_3::EnodataExc::EnodataExc() Unexecuted instantiation: Iex_3_3::EtimeExc::EtimeExc() Unexecuted instantiation: Iex_3_3::EnosrExc::EnosrExc() Unexecuted instantiation: Iex_3_3::EnonetExc::EnonetExc() Unexecuted instantiation: Iex_3_3::EnopkgExc::EnopkgExc() Unexecuted instantiation: Iex_3_3::EremoteExc::EremoteExc() Unexecuted instantiation: Iex_3_3::EnolinkExc::EnolinkExc() Unexecuted instantiation: Iex_3_3::EadvExc::EadvExc() Unexecuted instantiation: Iex_3_3::EsrmntExc::EsrmntExc() Unexecuted instantiation: Iex_3_3::EcommExc::EcommExc() Unexecuted instantiation: Iex_3_3::EprotoExc::EprotoExc() Unexecuted instantiation: Iex_3_3::EmultihopExc::EmultihopExc() Unexecuted instantiation: Iex_3_3::EbadmsgExc::EbadmsgExc() Unexecuted instantiation: Iex_3_3::EnametoolongExc::EnametoolongExc() Unexecuted instantiation: Iex_3_3::EoverflowExc::EoverflowExc() Unexecuted instantiation: Iex_3_3::EnotuniqExc::EnotuniqExc() Unexecuted instantiation: Iex_3_3::EbadfdExc::EbadfdExc() Unexecuted instantiation: Iex_3_3::EremchgExc::EremchgExc() Unexecuted instantiation: Iex_3_3::ElibaccExc::ElibaccExc() Unexecuted instantiation: Iex_3_3::ElibbadExc::ElibbadExc() Unexecuted instantiation: Iex_3_3::ElibscnExc::ElibscnExc() Unexecuted instantiation: Iex_3_3::ElibmaxExc::ElibmaxExc() Unexecuted instantiation: Iex_3_3::ElibexecExc::ElibexecExc() Unexecuted instantiation: Iex_3_3::EilseqExc::EilseqExc() Unexecuted instantiation: Iex_3_3::EnosysExc::EnosysExc() Unexecuted instantiation: Iex_3_3::EloopExc::EloopExc() Unexecuted instantiation: Iex_3_3::ErestartExc::ErestartExc() Unexecuted instantiation: Iex_3_3::EstrpipeExc::EstrpipeExc() Unexecuted instantiation: Iex_3_3::EnotemptyExc::EnotemptyExc() Unexecuted instantiation: Iex_3_3::EusersExc::EusersExc() Unexecuted instantiation: Iex_3_3::EnotsockExc::EnotsockExc() Unexecuted instantiation: Iex_3_3::EdestaddrreqExc::EdestaddrreqExc() Unexecuted instantiation: Iex_3_3::EmsgsizeExc::EmsgsizeExc() Unexecuted instantiation: Iex_3_3::EprototypeExc::EprototypeExc() Unexecuted instantiation: Iex_3_3::EnoprotooptExc::EnoprotooptExc() Unexecuted instantiation: Iex_3_3::EprotonosupportExc::EprotonosupportExc() Unexecuted instantiation: Iex_3_3::EsocktnosupportExc::EsocktnosupportExc() Unexecuted instantiation: Iex_3_3::EopnotsuppExc::EopnotsuppExc() Unexecuted instantiation: Iex_3_3::EpfnosupportExc::EpfnosupportExc() Unexecuted instantiation: Iex_3_3::EafnosupportExc::EafnosupportExc() Unexecuted instantiation: Iex_3_3::EaddrinuseExc::EaddrinuseExc() Unexecuted instantiation: Iex_3_3::EaddrnotavailExc::EaddrnotavailExc() Unexecuted instantiation: Iex_3_3::EnetdownExc::EnetdownExc() Unexecuted instantiation: Iex_3_3::EnetunreachExc::EnetunreachExc() Unexecuted instantiation: Iex_3_3::EnetresetExc::EnetresetExc() Unexecuted instantiation: Iex_3_3::EconnabortedExc::EconnabortedExc() Unexecuted instantiation: Iex_3_3::EconnresetExc::EconnresetExc() Unexecuted instantiation: Iex_3_3::EnobufsExc::EnobufsExc() Unexecuted instantiation: Iex_3_3::EisconnExc::EisconnExc() Unexecuted instantiation: Iex_3_3::EnotconnExc::EnotconnExc() Unexecuted instantiation: Iex_3_3::EshutdownExc::EshutdownExc() Unexecuted instantiation: Iex_3_3::EtoomanyrefsExc::EtoomanyrefsExc() Unexecuted instantiation: Iex_3_3::EtimedoutExc::EtimedoutExc() Unexecuted instantiation: Iex_3_3::EconnrefusedExc::EconnrefusedExc() Unexecuted instantiation: Iex_3_3::EhostdownExc::EhostdownExc() Unexecuted instantiation: Iex_3_3::EhostunreachExc::EhostunreachExc() Unexecuted instantiation: Iex_3_3::EalreadyExc::EalreadyExc() Unexecuted instantiation: Iex_3_3::EinprogressExc::EinprogressExc() Unexecuted instantiation: Iex_3_3::EstaleExc::EstaleExc() Unexecuted instantiation: Iex_3_3::EioresidExc::EioresidExc() Unexecuted instantiation: Iex_3_3::EucleanExc::EucleanExc() Unexecuted instantiation: Iex_3_3::EnotnamExc::EnotnamExc() Unexecuted instantiation: Iex_3_3::EnavailExc::EnavailExc() Unexecuted instantiation: Iex_3_3::EisnamExc::EisnamExc() Unexecuted instantiation: Iex_3_3::EremoteioExc::EremoteioExc() Unexecuted instantiation: Iex_3_3::EinitExc::EinitExc() Unexecuted instantiation: Iex_3_3::EremdevExc::EremdevExc() Unexecuted instantiation: Iex_3_3::EcanceledExc::EcanceledExc() Unexecuted instantiation: Iex_3_3::EnolimfileExc::EnolimfileExc() Unexecuted instantiation: Iex_3_3::EproclimExc::EproclimExc() Unexecuted instantiation: Iex_3_3::EdisjointExc::EdisjointExc() Unexecuted instantiation: Iex_3_3::EnologinExc::EnologinExc() Unexecuted instantiation: Iex_3_3::EloginlimExc::EloginlimExc() Unexecuted instantiation: Iex_3_3::EgrouploopExc::EgrouploopExc() Unexecuted instantiation: Iex_3_3::EnoattachExc::EnoattachExc() Unexecuted instantiation: Iex_3_3::EnotsupExc::EnotsupExc() Unexecuted instantiation: Iex_3_3::EnoattrExc::EnoattrExc() Unexecuted instantiation: Iex_3_3::EdircorruptedExc::EdircorruptedExc() Unexecuted instantiation: Iex_3_3::EdquotExc::EdquotExc() Unexecuted instantiation: Iex_3_3::EnfsremoteExc::EnfsremoteExc() Unexecuted instantiation: Iex_3_3::EcontrollerExc::EcontrollerExc() Unexecuted instantiation: Iex_3_3::EnotcontrollerExc::EnotcontrollerExc() Unexecuted instantiation: Iex_3_3::EenqueuedExc::EenqueuedExc() Unexecuted instantiation: Iex_3_3::EnotenqueuedExc::EnotenqueuedExc() Unexecuted instantiation: Iex_3_3::EjoinedExc::EjoinedExc() Unexecuted instantiation: Iex_3_3::EnotjoinedExc::EnotjoinedExc() Unexecuted instantiation: Iex_3_3::EnoprocExc::EnoprocExc() Unexecuted instantiation: Iex_3_3::EmustrunExc::EmustrunExc() Unexecuted instantiation: Iex_3_3::EnotstoppedExc::EnotstoppedExc() Unexecuted instantiation: Iex_3_3::EclockcpuExc::EclockcpuExc() Unexecuted instantiation: Iex_3_3::EinvalstateExc::EinvalstateExc() Unexecuted instantiation: Iex_3_3::EnoexistExc::EnoexistExc() Unexecuted instantiation: Iex_3_3::EendofminorExc::EendofminorExc() Unexecuted instantiation: Iex_3_3::EbufsizeExc::EbufsizeExc() Unexecuted instantiation: Iex_3_3::EemptyExc::EemptyExc() Unexecuted instantiation: Iex_3_3::EnointrgroupExc::EnointrgroupExc() Unexecuted instantiation: Iex_3_3::EinvalmodeExc::EinvalmodeExc() Unexecuted instantiation: Iex_3_3::EcantextentExc::EcantextentExc() Unexecuted instantiation: Iex_3_3::EinvaltimeExc::EinvaltimeExc() Unexecuted instantiation: Iex_3_3::EdestroyedExc::EdestroyedExc() Unexecuted instantiation: Iex_3_3::OverflowExc::OverflowExc() Unexecuted instantiation: Iex_3_3::UnderflowExc::UnderflowExc() Unexecuted instantiation: Iex_3_3::DivzeroExc::DivzeroExc() Unexecuted instantiation: Iex_3_3::InexactExc::InexactExc() Unexecuted instantiation: Iex_3_3::InvalidFpOpExc::InvalidFpOpExc() |
119 | 4.96k | exp name::name (const char* text) : base (text) \ |
120 | 4.96k | {} \ Iex_3_3::ArgExc::ArgExc(char const*) Line | Count | Source | 119 | 68 | exp name::name (const char* text) : base (text) \ | 120 | 68 | {} \ |
Unexecuted instantiation: Iex_3_3::LogicExc::LogicExc(char const*) Iex_3_3::InputExc::InputExc(char const*) Line | Count | Source | 119 | 3.55k | exp name::name (const char* text) : base (text) \ | 120 | 3.55k | {} \ |
Iex_3_3::IoExc::IoExc(char const*) Line | Count | Source | 119 | 1.34k | exp name::name (const char* text) : base (text) \ | 120 | 1.34k | {} \ |
Unexecuted instantiation: Iex_3_3::MathExc::MathExc(char const*) Unexecuted instantiation: Iex_3_3::ErrnoExc::ErrnoExc(char const*) Unexecuted instantiation: Iex_3_3::NoImplExc::NoImplExc(char const*) Unexecuted instantiation: Iex_3_3::NullExc::NullExc(char const*) Unexecuted instantiation: Iex_3_3::TypeExc::TypeExc(char const*) Unexecuted instantiation: Iex_3_3::EpermExc::EpermExc(char const*) Unexecuted instantiation: Iex_3_3::EnoentExc::EnoentExc(char const*) Unexecuted instantiation: Iex_3_3::EsrchExc::EsrchExc(char const*) Unexecuted instantiation: Iex_3_3::EintrExc::EintrExc(char const*) Unexecuted instantiation: Iex_3_3::EioExc::EioExc(char const*) Unexecuted instantiation: Iex_3_3::EnxioExc::EnxioExc(char const*) Unexecuted instantiation: Iex_3_3::E2bigExc::E2bigExc(char const*) Unexecuted instantiation: Iex_3_3::EnoexecExc::EnoexecExc(char const*) Unexecuted instantiation: Iex_3_3::EbadfExc::EbadfExc(char const*) Unexecuted instantiation: Iex_3_3::EchildExc::EchildExc(char const*) Unexecuted instantiation: Iex_3_3::EagainExc::EagainExc(char const*) Unexecuted instantiation: Iex_3_3::EnomemExc::EnomemExc(char const*) Unexecuted instantiation: Iex_3_3::EaccesExc::EaccesExc(char const*) Unexecuted instantiation: Iex_3_3::EfaultExc::EfaultExc(char const*) Unexecuted instantiation: Iex_3_3::EnotblkExc::EnotblkExc(char const*) Unexecuted instantiation: Iex_3_3::EbusyExc::EbusyExc(char const*) Unexecuted instantiation: Iex_3_3::EexistExc::EexistExc(char const*) Unexecuted instantiation: Iex_3_3::ExdevExc::ExdevExc(char const*) Unexecuted instantiation: Iex_3_3::EnodevExc::EnodevExc(char const*) Unexecuted instantiation: Iex_3_3::EnotdirExc::EnotdirExc(char const*) Unexecuted instantiation: Iex_3_3::EisdirExc::EisdirExc(char const*) Unexecuted instantiation: Iex_3_3::EinvalExc::EinvalExc(char const*) Unexecuted instantiation: Iex_3_3::EnfileExc::EnfileExc(char const*) Unexecuted instantiation: Iex_3_3::EmfileExc::EmfileExc(char const*) Unexecuted instantiation: Iex_3_3::EnottyExc::EnottyExc(char const*) Unexecuted instantiation: Iex_3_3::EtxtbsyExc::EtxtbsyExc(char const*) Unexecuted instantiation: Iex_3_3::EfbigExc::EfbigExc(char const*) Unexecuted instantiation: Iex_3_3::EnospcExc::EnospcExc(char const*) Unexecuted instantiation: Iex_3_3::EspipeExc::EspipeExc(char const*) Unexecuted instantiation: Iex_3_3::ErofsExc::ErofsExc(char const*) Unexecuted instantiation: Iex_3_3::EmlinkExc::EmlinkExc(char const*) Unexecuted instantiation: Iex_3_3::EpipeExc::EpipeExc(char const*) Unexecuted instantiation: Iex_3_3::EdomExc::EdomExc(char const*) Unexecuted instantiation: Iex_3_3::ErangeExc::ErangeExc(char const*) Unexecuted instantiation: Iex_3_3::EnomsgExc::EnomsgExc(char const*) Unexecuted instantiation: Iex_3_3::EidrmExc::EidrmExc(char const*) Unexecuted instantiation: Iex_3_3::EchrngExc::EchrngExc(char const*) Unexecuted instantiation: Iex_3_3::El2nsyncExc::El2nsyncExc(char const*) Unexecuted instantiation: Iex_3_3::El3hltExc::El3hltExc(char const*) Unexecuted instantiation: Iex_3_3::El3rstExc::El3rstExc(char const*) Unexecuted instantiation: Iex_3_3::ElnrngExc::ElnrngExc(char const*) Unexecuted instantiation: Iex_3_3::EunatchExc::EunatchExc(char const*) Unexecuted instantiation: Iex_3_3::EnocsiExc::EnocsiExc(char const*) Unexecuted instantiation: Iex_3_3::El2hltExc::El2hltExc(char const*) Unexecuted instantiation: Iex_3_3::EdeadlkExc::EdeadlkExc(char const*) Unexecuted instantiation: Iex_3_3::EnolckExc::EnolckExc(char const*) Unexecuted instantiation: Iex_3_3::EbadeExc::EbadeExc(char const*) Unexecuted instantiation: Iex_3_3::EbadrExc::EbadrExc(char const*) Unexecuted instantiation: Iex_3_3::ExfullExc::ExfullExc(char const*) Unexecuted instantiation: Iex_3_3::EnoanoExc::EnoanoExc(char const*) Unexecuted instantiation: Iex_3_3::EbadrqcExc::EbadrqcExc(char const*) Unexecuted instantiation: Iex_3_3::EbadsltExc::EbadsltExc(char const*) Unexecuted instantiation: Iex_3_3::EdeadlockExc::EdeadlockExc(char const*) Unexecuted instantiation: Iex_3_3::EbfontExc::EbfontExc(char const*) Unexecuted instantiation: Iex_3_3::EnostrExc::EnostrExc(char const*) Unexecuted instantiation: Iex_3_3::EnodataExc::EnodataExc(char const*) Unexecuted instantiation: Iex_3_3::EtimeExc::EtimeExc(char const*) Unexecuted instantiation: Iex_3_3::EnosrExc::EnosrExc(char const*) Unexecuted instantiation: Iex_3_3::EnonetExc::EnonetExc(char const*) Unexecuted instantiation: Iex_3_3::EnopkgExc::EnopkgExc(char const*) Unexecuted instantiation: Iex_3_3::EremoteExc::EremoteExc(char const*) Unexecuted instantiation: Iex_3_3::EnolinkExc::EnolinkExc(char const*) Unexecuted instantiation: Iex_3_3::EadvExc::EadvExc(char const*) Unexecuted instantiation: Iex_3_3::EsrmntExc::EsrmntExc(char const*) Unexecuted instantiation: Iex_3_3::EcommExc::EcommExc(char const*) Unexecuted instantiation: Iex_3_3::EprotoExc::EprotoExc(char const*) Unexecuted instantiation: Iex_3_3::EmultihopExc::EmultihopExc(char const*) Unexecuted instantiation: Iex_3_3::EbadmsgExc::EbadmsgExc(char const*) Unexecuted instantiation: Iex_3_3::EnametoolongExc::EnametoolongExc(char const*) Unexecuted instantiation: Iex_3_3::EoverflowExc::EoverflowExc(char const*) Unexecuted instantiation: Iex_3_3::EnotuniqExc::EnotuniqExc(char const*) Unexecuted instantiation: Iex_3_3::EbadfdExc::EbadfdExc(char const*) Unexecuted instantiation: Iex_3_3::EremchgExc::EremchgExc(char const*) Unexecuted instantiation: Iex_3_3::ElibaccExc::ElibaccExc(char const*) Unexecuted instantiation: Iex_3_3::ElibbadExc::ElibbadExc(char const*) Unexecuted instantiation: Iex_3_3::ElibscnExc::ElibscnExc(char const*) Unexecuted instantiation: Iex_3_3::ElibmaxExc::ElibmaxExc(char const*) Unexecuted instantiation: Iex_3_3::ElibexecExc::ElibexecExc(char const*) Unexecuted instantiation: Iex_3_3::EilseqExc::EilseqExc(char const*) Unexecuted instantiation: Iex_3_3::EnosysExc::EnosysExc(char const*) Unexecuted instantiation: Iex_3_3::EloopExc::EloopExc(char const*) Unexecuted instantiation: Iex_3_3::ErestartExc::ErestartExc(char const*) Unexecuted instantiation: Iex_3_3::EstrpipeExc::EstrpipeExc(char const*) Unexecuted instantiation: Iex_3_3::EnotemptyExc::EnotemptyExc(char const*) Unexecuted instantiation: Iex_3_3::EusersExc::EusersExc(char const*) Unexecuted instantiation: Iex_3_3::EnotsockExc::EnotsockExc(char const*) Unexecuted instantiation: Iex_3_3::EdestaddrreqExc::EdestaddrreqExc(char const*) Unexecuted instantiation: Iex_3_3::EmsgsizeExc::EmsgsizeExc(char const*) Unexecuted instantiation: Iex_3_3::EprototypeExc::EprototypeExc(char const*) Unexecuted instantiation: Iex_3_3::EnoprotooptExc::EnoprotooptExc(char const*) Unexecuted instantiation: Iex_3_3::EprotonosupportExc::EprotonosupportExc(char const*) Unexecuted instantiation: Iex_3_3::EsocktnosupportExc::EsocktnosupportExc(char const*) Unexecuted instantiation: Iex_3_3::EopnotsuppExc::EopnotsuppExc(char const*) Unexecuted instantiation: Iex_3_3::EpfnosupportExc::EpfnosupportExc(char const*) Unexecuted instantiation: Iex_3_3::EafnosupportExc::EafnosupportExc(char const*) Unexecuted instantiation: Iex_3_3::EaddrinuseExc::EaddrinuseExc(char const*) Unexecuted instantiation: Iex_3_3::EaddrnotavailExc::EaddrnotavailExc(char const*) Unexecuted instantiation: Iex_3_3::EnetdownExc::EnetdownExc(char const*) Unexecuted instantiation: Iex_3_3::EnetunreachExc::EnetunreachExc(char const*) Unexecuted instantiation: Iex_3_3::EnetresetExc::EnetresetExc(char const*) Unexecuted instantiation: Iex_3_3::EconnabortedExc::EconnabortedExc(char const*) Unexecuted instantiation: Iex_3_3::EconnresetExc::EconnresetExc(char const*) Unexecuted instantiation: Iex_3_3::EnobufsExc::EnobufsExc(char const*) Unexecuted instantiation: Iex_3_3::EisconnExc::EisconnExc(char const*) Unexecuted instantiation: Iex_3_3::EnotconnExc::EnotconnExc(char const*) Unexecuted instantiation: Iex_3_3::EshutdownExc::EshutdownExc(char const*) Unexecuted instantiation: Iex_3_3::EtoomanyrefsExc::EtoomanyrefsExc(char const*) Unexecuted instantiation: Iex_3_3::EtimedoutExc::EtimedoutExc(char const*) Unexecuted instantiation: Iex_3_3::EconnrefusedExc::EconnrefusedExc(char const*) Unexecuted instantiation: Iex_3_3::EhostdownExc::EhostdownExc(char const*) Unexecuted instantiation: Iex_3_3::EhostunreachExc::EhostunreachExc(char const*) Unexecuted instantiation: Iex_3_3::EalreadyExc::EalreadyExc(char const*) Unexecuted instantiation: Iex_3_3::EinprogressExc::EinprogressExc(char const*) Unexecuted instantiation: Iex_3_3::EstaleExc::EstaleExc(char const*) Unexecuted instantiation: Iex_3_3::EioresidExc::EioresidExc(char const*) Unexecuted instantiation: Iex_3_3::EucleanExc::EucleanExc(char const*) Unexecuted instantiation: Iex_3_3::EnotnamExc::EnotnamExc(char const*) Unexecuted instantiation: Iex_3_3::EnavailExc::EnavailExc(char const*) Unexecuted instantiation: Iex_3_3::EisnamExc::EisnamExc(char const*) Unexecuted instantiation: Iex_3_3::EremoteioExc::EremoteioExc(char const*) Unexecuted instantiation: Iex_3_3::EinitExc::EinitExc(char const*) Unexecuted instantiation: Iex_3_3::EremdevExc::EremdevExc(char const*) Unexecuted instantiation: Iex_3_3::EcanceledExc::EcanceledExc(char const*) Unexecuted instantiation: Iex_3_3::EnolimfileExc::EnolimfileExc(char const*) Unexecuted instantiation: Iex_3_3::EproclimExc::EproclimExc(char const*) Unexecuted instantiation: Iex_3_3::EdisjointExc::EdisjointExc(char const*) Unexecuted instantiation: Iex_3_3::EnologinExc::EnologinExc(char const*) Unexecuted instantiation: Iex_3_3::EloginlimExc::EloginlimExc(char const*) Unexecuted instantiation: Iex_3_3::EgrouploopExc::EgrouploopExc(char const*) Unexecuted instantiation: Iex_3_3::EnoattachExc::EnoattachExc(char const*) Unexecuted instantiation: Iex_3_3::EnotsupExc::EnotsupExc(char const*) Unexecuted instantiation: Iex_3_3::EnoattrExc::EnoattrExc(char const*) Unexecuted instantiation: Iex_3_3::EdircorruptedExc::EdircorruptedExc(char const*) Unexecuted instantiation: Iex_3_3::EdquotExc::EdquotExc(char const*) Unexecuted instantiation: Iex_3_3::EnfsremoteExc::EnfsremoteExc(char const*) Unexecuted instantiation: Iex_3_3::EcontrollerExc::EcontrollerExc(char const*) Unexecuted instantiation: Iex_3_3::EnotcontrollerExc::EnotcontrollerExc(char const*) Unexecuted instantiation: Iex_3_3::EenqueuedExc::EenqueuedExc(char const*) Unexecuted instantiation: Iex_3_3::EnotenqueuedExc::EnotenqueuedExc(char const*) Unexecuted instantiation: Iex_3_3::EjoinedExc::EjoinedExc(char const*) Unexecuted instantiation: Iex_3_3::EnotjoinedExc::EnotjoinedExc(char const*) Unexecuted instantiation: Iex_3_3::EnoprocExc::EnoprocExc(char const*) Unexecuted instantiation: Iex_3_3::EmustrunExc::EmustrunExc(char const*) Unexecuted instantiation: Iex_3_3::EnotstoppedExc::EnotstoppedExc(char const*) Unexecuted instantiation: Iex_3_3::EclockcpuExc::EclockcpuExc(char const*) Unexecuted instantiation: Iex_3_3::EinvalstateExc::EinvalstateExc(char const*) Unexecuted instantiation: Iex_3_3::EnoexistExc::EnoexistExc(char const*) Unexecuted instantiation: Iex_3_3::EendofminorExc::EendofminorExc(char const*) Unexecuted instantiation: Iex_3_3::EbufsizeExc::EbufsizeExc(char const*) Unexecuted instantiation: Iex_3_3::EemptyExc::EemptyExc(char const*) Unexecuted instantiation: Iex_3_3::EnointrgroupExc::EnointrgroupExc(char const*) Unexecuted instantiation: Iex_3_3::EinvalmodeExc::EinvalmodeExc(char const*) Unexecuted instantiation: Iex_3_3::EcantextentExc::EcantextentExc(char const*) Unexecuted instantiation: Iex_3_3::EinvaltimeExc::EinvaltimeExc(char const*) Unexecuted instantiation: Iex_3_3::EdestroyedExc::EdestroyedExc(char const*) Unexecuted instantiation: Iex_3_3::OverflowExc::OverflowExc(char const*) Unexecuted instantiation: Iex_3_3::UnderflowExc::UnderflowExc(char const*) Unexecuted instantiation: Iex_3_3::DivzeroExc::DivzeroExc(char const*) Unexecuted instantiation: Iex_3_3::InexactExc::InexactExc(char const*) Unexecuted instantiation: Iex_3_3::InvalidFpOpExc::InvalidFpOpExc(char const*) |
121 | 57 | exp name::name (const std::string& text) : base (text) \ |
122 | 57 | {} \ Unexecuted instantiation: Iex_3_3::ArgExc::ArgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::LogicExc::LogicExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::InputExc::InputExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Iex_3_3::IoExc::IoExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Line | Count | Source | 121 | 57 | exp name::name (const std::string& text) : base (text) \ | 122 | 57 | {} \ |
Unexecuted instantiation: Iex_3_3::MathExc::MathExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::ErrnoExc::ErrnoExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::NoImplExc::NoImplExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::NullExc::NullExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::TypeExc::TypeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EpermExc::EpermExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnoentExc::EnoentExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EsrchExc::EsrchExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EintrExc::EintrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EioExc::EioExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnxioExc::EnxioExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::E2bigExc::E2bigExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnoexecExc::EnoexecExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EbadfExc::EbadfExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EchildExc::EchildExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EagainExc::EagainExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnomemExc::EnomemExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EaccesExc::EaccesExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EfaultExc::EfaultExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnotblkExc::EnotblkExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EbusyExc::EbusyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EexistExc::EexistExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::ExdevExc::ExdevExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnodevExc::EnodevExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnotdirExc::EnotdirExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EisdirExc::EisdirExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EinvalExc::EinvalExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnfileExc::EnfileExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EmfileExc::EmfileExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnottyExc::EnottyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EtxtbsyExc::EtxtbsyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EfbigExc::EfbigExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnospcExc::EnospcExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EspipeExc::EspipeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::ErofsExc::ErofsExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EmlinkExc::EmlinkExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EpipeExc::EpipeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EdomExc::EdomExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::ErangeExc::ErangeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnomsgExc::EnomsgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EidrmExc::EidrmExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EchrngExc::EchrngExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::El2nsyncExc::El2nsyncExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::El3hltExc::El3hltExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::El3rstExc::El3rstExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::ElnrngExc::ElnrngExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EunatchExc::EunatchExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnocsiExc::EnocsiExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::El2hltExc::El2hltExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EdeadlkExc::EdeadlkExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnolckExc::EnolckExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EbadeExc::EbadeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EbadrExc::EbadrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::ExfullExc::ExfullExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnoanoExc::EnoanoExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EbadrqcExc::EbadrqcExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EbadsltExc::EbadsltExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EdeadlockExc::EdeadlockExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EbfontExc::EbfontExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnostrExc::EnostrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnodataExc::EnodataExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EtimeExc::EtimeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnosrExc::EnosrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnonetExc::EnonetExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnopkgExc::EnopkgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EremoteExc::EremoteExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnolinkExc::EnolinkExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EadvExc::EadvExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EsrmntExc::EsrmntExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EcommExc::EcommExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EprotoExc::EprotoExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EmultihopExc::EmultihopExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EbadmsgExc::EbadmsgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnametoolongExc::EnametoolongExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EoverflowExc::EoverflowExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnotuniqExc::EnotuniqExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EbadfdExc::EbadfdExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EremchgExc::EremchgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::ElibaccExc::ElibaccExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::ElibbadExc::ElibbadExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::ElibscnExc::ElibscnExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::ElibmaxExc::ElibmaxExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::ElibexecExc::ElibexecExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EilseqExc::EilseqExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnosysExc::EnosysExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EloopExc::EloopExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::ErestartExc::ErestartExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EstrpipeExc::EstrpipeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnotemptyExc::EnotemptyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EusersExc::EusersExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnotsockExc::EnotsockExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EdestaddrreqExc::EdestaddrreqExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EmsgsizeExc::EmsgsizeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EprototypeExc::EprototypeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnoprotooptExc::EnoprotooptExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EprotonosupportExc::EprotonosupportExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EsocktnosupportExc::EsocktnosupportExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EopnotsuppExc::EopnotsuppExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EpfnosupportExc::EpfnosupportExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EafnosupportExc::EafnosupportExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EaddrinuseExc::EaddrinuseExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EaddrnotavailExc::EaddrnotavailExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnetdownExc::EnetdownExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnetunreachExc::EnetunreachExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnetresetExc::EnetresetExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EconnabortedExc::EconnabortedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EconnresetExc::EconnresetExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnobufsExc::EnobufsExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EisconnExc::EisconnExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnotconnExc::EnotconnExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EshutdownExc::EshutdownExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EtoomanyrefsExc::EtoomanyrefsExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EtimedoutExc::EtimedoutExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EconnrefusedExc::EconnrefusedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EhostdownExc::EhostdownExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EhostunreachExc::EhostunreachExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EalreadyExc::EalreadyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EinprogressExc::EinprogressExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EstaleExc::EstaleExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EioresidExc::EioresidExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EucleanExc::EucleanExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnotnamExc::EnotnamExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnavailExc::EnavailExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EisnamExc::EisnamExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EremoteioExc::EremoteioExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EinitExc::EinitExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EremdevExc::EremdevExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EcanceledExc::EcanceledExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnolimfileExc::EnolimfileExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EproclimExc::EproclimExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EdisjointExc::EdisjointExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnologinExc::EnologinExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EloginlimExc::EloginlimExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EgrouploopExc::EgrouploopExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnoattachExc::EnoattachExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnotsupExc::EnotsupExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnoattrExc::EnoattrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EdircorruptedExc::EdircorruptedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EdquotExc::EdquotExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnfsremoteExc::EnfsremoteExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EcontrollerExc::EcontrollerExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnotcontrollerExc::EnotcontrollerExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EenqueuedExc::EenqueuedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnotenqueuedExc::EnotenqueuedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EjoinedExc::EjoinedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnotjoinedExc::EnotjoinedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnoprocExc::EnoprocExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EmustrunExc::EmustrunExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnotstoppedExc::EnotstoppedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EclockcpuExc::EclockcpuExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EinvalstateExc::EinvalstateExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnoexistExc::EnoexistExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EendofminorExc::EendofminorExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EbufsizeExc::EbufsizeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EemptyExc::EemptyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EnointrgroupExc::EnointrgroupExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EinvalmodeExc::EinvalmodeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EcantextentExc::EcantextentExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EinvaltimeExc::EinvaltimeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::EdestroyedExc::EdestroyedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::OverflowExc::OverflowExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::UnderflowExc::UnderflowExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::DivzeroExc::DivzeroExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::InexactExc::InexactExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_3_3::InvalidFpOpExc::InvalidFpOpExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) |
123 | 0 | exp name::name (std::string&& text) : base (std::move (text)) \ |
124 | 0 | {} \ Unexecuted instantiation: Iex_3_3::ArgExc::ArgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::LogicExc::LogicExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::InputExc::InputExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::IoExc::IoExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::MathExc::MathExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::ErrnoExc::ErrnoExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::NoImplExc::NoImplExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::NullExc::NullExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::TypeExc::TypeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EpermExc::EpermExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnoentExc::EnoentExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EsrchExc::EsrchExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EintrExc::EintrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EioExc::EioExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnxioExc::EnxioExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::E2bigExc::E2bigExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnoexecExc::EnoexecExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EbadfExc::EbadfExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EchildExc::EchildExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EagainExc::EagainExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnomemExc::EnomemExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EaccesExc::EaccesExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EfaultExc::EfaultExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnotblkExc::EnotblkExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EbusyExc::EbusyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EexistExc::EexistExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::ExdevExc::ExdevExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnodevExc::EnodevExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnotdirExc::EnotdirExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EisdirExc::EisdirExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EinvalExc::EinvalExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnfileExc::EnfileExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EmfileExc::EmfileExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnottyExc::EnottyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EtxtbsyExc::EtxtbsyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EfbigExc::EfbigExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnospcExc::EnospcExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EspipeExc::EspipeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::ErofsExc::ErofsExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EmlinkExc::EmlinkExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EpipeExc::EpipeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EdomExc::EdomExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::ErangeExc::ErangeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnomsgExc::EnomsgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EidrmExc::EidrmExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EchrngExc::EchrngExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::El2nsyncExc::El2nsyncExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::El3hltExc::El3hltExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::El3rstExc::El3rstExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::ElnrngExc::ElnrngExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EunatchExc::EunatchExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnocsiExc::EnocsiExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::El2hltExc::El2hltExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EdeadlkExc::EdeadlkExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnolckExc::EnolckExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EbadeExc::EbadeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EbadrExc::EbadrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::ExfullExc::ExfullExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnoanoExc::EnoanoExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EbadrqcExc::EbadrqcExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EbadsltExc::EbadsltExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EdeadlockExc::EdeadlockExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EbfontExc::EbfontExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnostrExc::EnostrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnodataExc::EnodataExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EtimeExc::EtimeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnosrExc::EnosrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnonetExc::EnonetExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnopkgExc::EnopkgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EremoteExc::EremoteExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnolinkExc::EnolinkExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EadvExc::EadvExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EsrmntExc::EsrmntExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EcommExc::EcommExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EprotoExc::EprotoExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EmultihopExc::EmultihopExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EbadmsgExc::EbadmsgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnametoolongExc::EnametoolongExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EoverflowExc::EoverflowExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnotuniqExc::EnotuniqExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EbadfdExc::EbadfdExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EremchgExc::EremchgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::ElibaccExc::ElibaccExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::ElibbadExc::ElibbadExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::ElibscnExc::ElibscnExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::ElibmaxExc::ElibmaxExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::ElibexecExc::ElibexecExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EilseqExc::EilseqExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnosysExc::EnosysExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EloopExc::EloopExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::ErestartExc::ErestartExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EstrpipeExc::EstrpipeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnotemptyExc::EnotemptyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EusersExc::EusersExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnotsockExc::EnotsockExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EdestaddrreqExc::EdestaddrreqExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EmsgsizeExc::EmsgsizeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EprototypeExc::EprototypeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnoprotooptExc::EnoprotooptExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EprotonosupportExc::EprotonosupportExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EsocktnosupportExc::EsocktnosupportExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EopnotsuppExc::EopnotsuppExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EpfnosupportExc::EpfnosupportExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EafnosupportExc::EafnosupportExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EaddrinuseExc::EaddrinuseExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EaddrnotavailExc::EaddrnotavailExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnetdownExc::EnetdownExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnetunreachExc::EnetunreachExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnetresetExc::EnetresetExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EconnabortedExc::EconnabortedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EconnresetExc::EconnresetExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnobufsExc::EnobufsExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EisconnExc::EisconnExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnotconnExc::EnotconnExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EshutdownExc::EshutdownExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EtoomanyrefsExc::EtoomanyrefsExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EtimedoutExc::EtimedoutExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EconnrefusedExc::EconnrefusedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EhostdownExc::EhostdownExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EhostunreachExc::EhostunreachExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EalreadyExc::EalreadyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EinprogressExc::EinprogressExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EstaleExc::EstaleExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EioresidExc::EioresidExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EucleanExc::EucleanExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnotnamExc::EnotnamExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnavailExc::EnavailExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EisnamExc::EisnamExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EremoteioExc::EremoteioExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EinitExc::EinitExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EremdevExc::EremdevExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EcanceledExc::EcanceledExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnolimfileExc::EnolimfileExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EproclimExc::EproclimExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EdisjointExc::EdisjointExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnologinExc::EnologinExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EloginlimExc::EloginlimExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EgrouploopExc::EgrouploopExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnoattachExc::EnoattachExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnotsupExc::EnotsupExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnoattrExc::EnoattrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EdircorruptedExc::EdircorruptedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EdquotExc::EdquotExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnfsremoteExc::EnfsremoteExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EcontrollerExc::EcontrollerExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnotcontrollerExc::EnotcontrollerExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EenqueuedExc::EenqueuedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnotenqueuedExc::EnotenqueuedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EjoinedExc::EjoinedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnotjoinedExc::EnotjoinedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnoprocExc::EnoprocExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EmustrunExc::EmustrunExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnotstoppedExc::EnotstoppedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EclockcpuExc::EclockcpuExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EinvalstateExc::EinvalstateExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnoexistExc::EnoexistExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EendofminorExc::EendofminorExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EbufsizeExc::EbufsizeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EemptyExc::EemptyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EnointrgroupExc::EnointrgroupExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EinvalmodeExc::EinvalmodeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EcantextentExc::EcantextentExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EinvaltimeExc::EinvaltimeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::EdestroyedExc::EdestroyedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::OverflowExc::OverflowExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::UnderflowExc::UnderflowExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::DivzeroExc::DivzeroExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::InexactExc::InexactExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) Unexecuted instantiation: Iex_3_3::InvalidFpOpExc::InvalidFpOpExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) |
125 | 1.63k | exp name::name (std::stringstream& text) : base (text) \ |
126 | 1.63k | {} \ Iex_3_3::ArgExc::ArgExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Line | Count | Source | 125 | 870 | exp name::name (std::stringstream& text) : base (text) \ | 126 | 870 | {} \ |
Unexecuted instantiation: Iex_3_3::LogicExc::LogicExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Iex_3_3::InputExc::InputExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Line | Count | Source | 125 | 760 | exp name::name (std::stringstream& text) : base (text) \ | 126 | 760 | {} \ |
Unexecuted instantiation: Iex_3_3::IoExc::IoExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::MathExc::MathExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::ErrnoExc::ErrnoExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::NoImplExc::NoImplExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::NullExc::NullExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::TypeExc::TypeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EpermExc::EpermExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnoentExc::EnoentExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EsrchExc::EsrchExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EintrExc::EintrExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EioExc::EioExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnxioExc::EnxioExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::E2bigExc::E2bigExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnoexecExc::EnoexecExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EbadfExc::EbadfExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EchildExc::EchildExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EagainExc::EagainExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnomemExc::EnomemExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EaccesExc::EaccesExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EfaultExc::EfaultExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnotblkExc::EnotblkExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EbusyExc::EbusyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EexistExc::EexistExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::ExdevExc::ExdevExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnodevExc::EnodevExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnotdirExc::EnotdirExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EisdirExc::EisdirExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EinvalExc::EinvalExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnfileExc::EnfileExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EmfileExc::EmfileExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnottyExc::EnottyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EtxtbsyExc::EtxtbsyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EfbigExc::EfbigExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnospcExc::EnospcExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EspipeExc::EspipeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::ErofsExc::ErofsExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EmlinkExc::EmlinkExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EpipeExc::EpipeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EdomExc::EdomExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::ErangeExc::ErangeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnomsgExc::EnomsgExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EidrmExc::EidrmExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EchrngExc::EchrngExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::El2nsyncExc::El2nsyncExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::El3hltExc::El3hltExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::El3rstExc::El3rstExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::ElnrngExc::ElnrngExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EunatchExc::EunatchExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnocsiExc::EnocsiExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::El2hltExc::El2hltExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EdeadlkExc::EdeadlkExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnolckExc::EnolckExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EbadeExc::EbadeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EbadrExc::EbadrExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::ExfullExc::ExfullExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnoanoExc::EnoanoExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EbadrqcExc::EbadrqcExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EbadsltExc::EbadsltExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EdeadlockExc::EdeadlockExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EbfontExc::EbfontExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnostrExc::EnostrExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnodataExc::EnodataExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EtimeExc::EtimeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnosrExc::EnosrExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnonetExc::EnonetExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnopkgExc::EnopkgExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EremoteExc::EremoteExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnolinkExc::EnolinkExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EadvExc::EadvExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EsrmntExc::EsrmntExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EcommExc::EcommExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EprotoExc::EprotoExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EmultihopExc::EmultihopExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EbadmsgExc::EbadmsgExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnametoolongExc::EnametoolongExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EoverflowExc::EoverflowExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnotuniqExc::EnotuniqExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EbadfdExc::EbadfdExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EremchgExc::EremchgExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::ElibaccExc::ElibaccExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::ElibbadExc::ElibbadExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::ElibscnExc::ElibscnExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::ElibmaxExc::ElibmaxExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::ElibexecExc::ElibexecExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EilseqExc::EilseqExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnosysExc::EnosysExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EloopExc::EloopExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::ErestartExc::ErestartExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EstrpipeExc::EstrpipeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnotemptyExc::EnotemptyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EusersExc::EusersExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnotsockExc::EnotsockExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EdestaddrreqExc::EdestaddrreqExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EmsgsizeExc::EmsgsizeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EprototypeExc::EprototypeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnoprotooptExc::EnoprotooptExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EprotonosupportExc::EprotonosupportExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EsocktnosupportExc::EsocktnosupportExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EopnotsuppExc::EopnotsuppExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EpfnosupportExc::EpfnosupportExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EafnosupportExc::EafnosupportExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EaddrinuseExc::EaddrinuseExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EaddrnotavailExc::EaddrnotavailExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnetdownExc::EnetdownExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnetunreachExc::EnetunreachExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnetresetExc::EnetresetExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EconnabortedExc::EconnabortedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EconnresetExc::EconnresetExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnobufsExc::EnobufsExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EisconnExc::EisconnExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnotconnExc::EnotconnExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EshutdownExc::EshutdownExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EtoomanyrefsExc::EtoomanyrefsExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EtimedoutExc::EtimedoutExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EconnrefusedExc::EconnrefusedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EhostdownExc::EhostdownExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EhostunreachExc::EhostunreachExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EalreadyExc::EalreadyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EinprogressExc::EinprogressExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EstaleExc::EstaleExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EioresidExc::EioresidExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EucleanExc::EucleanExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnotnamExc::EnotnamExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnavailExc::EnavailExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EisnamExc::EisnamExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EremoteioExc::EremoteioExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EinitExc::EinitExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EremdevExc::EremdevExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EcanceledExc::EcanceledExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnolimfileExc::EnolimfileExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EproclimExc::EproclimExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EdisjointExc::EdisjointExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnologinExc::EnologinExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EloginlimExc::EloginlimExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EgrouploopExc::EgrouploopExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnoattachExc::EnoattachExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnotsupExc::EnotsupExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnoattrExc::EnoattrExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EdircorruptedExc::EdircorruptedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EdquotExc::EdquotExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnfsremoteExc::EnfsremoteExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EcontrollerExc::EcontrollerExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnotcontrollerExc::EnotcontrollerExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EenqueuedExc::EenqueuedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnotenqueuedExc::EnotenqueuedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EjoinedExc::EjoinedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnotjoinedExc::EnotjoinedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnoprocExc::EnoprocExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EmustrunExc::EmustrunExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnotstoppedExc::EnotstoppedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EclockcpuExc::EclockcpuExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EinvalstateExc::EinvalstateExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnoexistExc::EnoexistExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EendofminorExc::EendofminorExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EbufsizeExc::EbufsizeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EemptyExc::EemptyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EnointrgroupExc::EnointrgroupExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EinvalmodeExc::EinvalmodeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EcantextentExc::EcantextentExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EinvaltimeExc::EinvaltimeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::EdestroyedExc::EdestroyedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::OverflowExc::OverflowExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::UnderflowExc::UnderflowExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::DivzeroExc::DivzeroExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::InexactExc::InexactExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_3_3::InvalidFpOpExc::InvalidFpOpExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) |
127 | 0 | exp name::name (const name& other) : base (other) \ |
128 | 0 | {} \ Unexecuted instantiation: Iex_3_3::ArgExc::ArgExc(Iex_3_3::ArgExc const&) Unexecuted instantiation: Iex_3_3::LogicExc::LogicExc(Iex_3_3::LogicExc const&) Unexecuted instantiation: Iex_3_3::InputExc::InputExc(Iex_3_3::InputExc const&) Unexecuted instantiation: Iex_3_3::IoExc::IoExc(Iex_3_3::IoExc const&) Unexecuted instantiation: Iex_3_3::MathExc::MathExc(Iex_3_3::MathExc const&) Unexecuted instantiation: Iex_3_3::ErrnoExc::ErrnoExc(Iex_3_3::ErrnoExc const&) Unexecuted instantiation: Iex_3_3::NoImplExc::NoImplExc(Iex_3_3::NoImplExc const&) Unexecuted instantiation: Iex_3_3::NullExc::NullExc(Iex_3_3::NullExc const&) Unexecuted instantiation: Iex_3_3::TypeExc::TypeExc(Iex_3_3::TypeExc const&) Unexecuted instantiation: Iex_3_3::EpermExc::EpermExc(Iex_3_3::EpermExc const&) Unexecuted instantiation: Iex_3_3::EnoentExc::EnoentExc(Iex_3_3::EnoentExc const&) Unexecuted instantiation: Iex_3_3::EsrchExc::EsrchExc(Iex_3_3::EsrchExc const&) Unexecuted instantiation: Iex_3_3::EintrExc::EintrExc(Iex_3_3::EintrExc const&) Unexecuted instantiation: Iex_3_3::EioExc::EioExc(Iex_3_3::EioExc const&) Unexecuted instantiation: Iex_3_3::EnxioExc::EnxioExc(Iex_3_3::EnxioExc const&) Unexecuted instantiation: Iex_3_3::E2bigExc::E2bigExc(Iex_3_3::E2bigExc const&) Unexecuted instantiation: Iex_3_3::EnoexecExc::EnoexecExc(Iex_3_3::EnoexecExc const&) Unexecuted instantiation: Iex_3_3::EbadfExc::EbadfExc(Iex_3_3::EbadfExc const&) Unexecuted instantiation: Iex_3_3::EchildExc::EchildExc(Iex_3_3::EchildExc const&) Unexecuted instantiation: Iex_3_3::EagainExc::EagainExc(Iex_3_3::EagainExc const&) Unexecuted instantiation: Iex_3_3::EnomemExc::EnomemExc(Iex_3_3::EnomemExc const&) Unexecuted instantiation: Iex_3_3::EaccesExc::EaccesExc(Iex_3_3::EaccesExc const&) Unexecuted instantiation: Iex_3_3::EfaultExc::EfaultExc(Iex_3_3::EfaultExc const&) Unexecuted instantiation: Iex_3_3::EnotblkExc::EnotblkExc(Iex_3_3::EnotblkExc const&) Unexecuted instantiation: Iex_3_3::EbusyExc::EbusyExc(Iex_3_3::EbusyExc const&) Unexecuted instantiation: Iex_3_3::EexistExc::EexistExc(Iex_3_3::EexistExc const&) Unexecuted instantiation: Iex_3_3::ExdevExc::ExdevExc(Iex_3_3::ExdevExc const&) Unexecuted instantiation: Iex_3_3::EnodevExc::EnodevExc(Iex_3_3::EnodevExc const&) Unexecuted instantiation: Iex_3_3::EnotdirExc::EnotdirExc(Iex_3_3::EnotdirExc const&) Unexecuted instantiation: Iex_3_3::EisdirExc::EisdirExc(Iex_3_3::EisdirExc const&) Unexecuted instantiation: Iex_3_3::EinvalExc::EinvalExc(Iex_3_3::EinvalExc const&) Unexecuted instantiation: Iex_3_3::EnfileExc::EnfileExc(Iex_3_3::EnfileExc const&) Unexecuted instantiation: Iex_3_3::EmfileExc::EmfileExc(Iex_3_3::EmfileExc const&) Unexecuted instantiation: Iex_3_3::EnottyExc::EnottyExc(Iex_3_3::EnottyExc const&) Unexecuted instantiation: Iex_3_3::EtxtbsyExc::EtxtbsyExc(Iex_3_3::EtxtbsyExc const&) Unexecuted instantiation: Iex_3_3::EfbigExc::EfbigExc(Iex_3_3::EfbigExc const&) Unexecuted instantiation: Iex_3_3::EnospcExc::EnospcExc(Iex_3_3::EnospcExc const&) Unexecuted instantiation: Iex_3_3::EspipeExc::EspipeExc(Iex_3_3::EspipeExc const&) Unexecuted instantiation: Iex_3_3::ErofsExc::ErofsExc(Iex_3_3::ErofsExc const&) Unexecuted instantiation: Iex_3_3::EmlinkExc::EmlinkExc(Iex_3_3::EmlinkExc const&) Unexecuted instantiation: Iex_3_3::EpipeExc::EpipeExc(Iex_3_3::EpipeExc const&) Unexecuted instantiation: Iex_3_3::EdomExc::EdomExc(Iex_3_3::EdomExc const&) Unexecuted instantiation: Iex_3_3::ErangeExc::ErangeExc(Iex_3_3::ErangeExc const&) Unexecuted instantiation: Iex_3_3::EnomsgExc::EnomsgExc(Iex_3_3::EnomsgExc const&) Unexecuted instantiation: Iex_3_3::EidrmExc::EidrmExc(Iex_3_3::EidrmExc const&) Unexecuted instantiation: Iex_3_3::EchrngExc::EchrngExc(Iex_3_3::EchrngExc const&) Unexecuted instantiation: Iex_3_3::El2nsyncExc::El2nsyncExc(Iex_3_3::El2nsyncExc const&) Unexecuted instantiation: Iex_3_3::El3hltExc::El3hltExc(Iex_3_3::El3hltExc const&) Unexecuted instantiation: Iex_3_3::El3rstExc::El3rstExc(Iex_3_3::El3rstExc const&) Unexecuted instantiation: Iex_3_3::ElnrngExc::ElnrngExc(Iex_3_3::ElnrngExc const&) Unexecuted instantiation: Iex_3_3::EunatchExc::EunatchExc(Iex_3_3::EunatchExc const&) Unexecuted instantiation: Iex_3_3::EnocsiExc::EnocsiExc(Iex_3_3::EnocsiExc const&) Unexecuted instantiation: Iex_3_3::El2hltExc::El2hltExc(Iex_3_3::El2hltExc const&) Unexecuted instantiation: Iex_3_3::EdeadlkExc::EdeadlkExc(Iex_3_3::EdeadlkExc const&) Unexecuted instantiation: Iex_3_3::EnolckExc::EnolckExc(Iex_3_3::EnolckExc const&) Unexecuted instantiation: Iex_3_3::EbadeExc::EbadeExc(Iex_3_3::EbadeExc const&) Unexecuted instantiation: Iex_3_3::EbadrExc::EbadrExc(Iex_3_3::EbadrExc const&) Unexecuted instantiation: Iex_3_3::ExfullExc::ExfullExc(Iex_3_3::ExfullExc const&) Unexecuted instantiation: Iex_3_3::EnoanoExc::EnoanoExc(Iex_3_3::EnoanoExc const&) Unexecuted instantiation: Iex_3_3::EbadrqcExc::EbadrqcExc(Iex_3_3::EbadrqcExc const&) Unexecuted instantiation: Iex_3_3::EbadsltExc::EbadsltExc(Iex_3_3::EbadsltExc const&) Unexecuted instantiation: Iex_3_3::EdeadlockExc::EdeadlockExc(Iex_3_3::EdeadlockExc const&) Unexecuted instantiation: Iex_3_3::EbfontExc::EbfontExc(Iex_3_3::EbfontExc const&) Unexecuted instantiation: Iex_3_3::EnostrExc::EnostrExc(Iex_3_3::EnostrExc const&) Unexecuted instantiation: Iex_3_3::EnodataExc::EnodataExc(Iex_3_3::EnodataExc const&) Unexecuted instantiation: Iex_3_3::EtimeExc::EtimeExc(Iex_3_3::EtimeExc const&) Unexecuted instantiation: Iex_3_3::EnosrExc::EnosrExc(Iex_3_3::EnosrExc const&) Unexecuted instantiation: Iex_3_3::EnonetExc::EnonetExc(Iex_3_3::EnonetExc const&) Unexecuted instantiation: Iex_3_3::EnopkgExc::EnopkgExc(Iex_3_3::EnopkgExc const&) Unexecuted instantiation: Iex_3_3::EremoteExc::EremoteExc(Iex_3_3::EremoteExc const&) Unexecuted instantiation: Iex_3_3::EnolinkExc::EnolinkExc(Iex_3_3::EnolinkExc const&) Unexecuted instantiation: Iex_3_3::EadvExc::EadvExc(Iex_3_3::EadvExc const&) Unexecuted instantiation: Iex_3_3::EsrmntExc::EsrmntExc(Iex_3_3::EsrmntExc const&) Unexecuted instantiation: Iex_3_3::EcommExc::EcommExc(Iex_3_3::EcommExc const&) Unexecuted instantiation: Iex_3_3::EprotoExc::EprotoExc(Iex_3_3::EprotoExc const&) Unexecuted instantiation: Iex_3_3::EmultihopExc::EmultihopExc(Iex_3_3::EmultihopExc const&) Unexecuted instantiation: Iex_3_3::EbadmsgExc::EbadmsgExc(Iex_3_3::EbadmsgExc const&) Unexecuted instantiation: Iex_3_3::EnametoolongExc::EnametoolongExc(Iex_3_3::EnametoolongExc const&) Unexecuted instantiation: Iex_3_3::EoverflowExc::EoverflowExc(Iex_3_3::EoverflowExc const&) Unexecuted instantiation: Iex_3_3::EnotuniqExc::EnotuniqExc(Iex_3_3::EnotuniqExc const&) Unexecuted instantiation: Iex_3_3::EbadfdExc::EbadfdExc(Iex_3_3::EbadfdExc const&) Unexecuted instantiation: Iex_3_3::EremchgExc::EremchgExc(Iex_3_3::EremchgExc const&) Unexecuted instantiation: Iex_3_3::ElibaccExc::ElibaccExc(Iex_3_3::ElibaccExc const&) Unexecuted instantiation: Iex_3_3::ElibbadExc::ElibbadExc(Iex_3_3::ElibbadExc const&) Unexecuted instantiation: Iex_3_3::ElibscnExc::ElibscnExc(Iex_3_3::ElibscnExc const&) Unexecuted instantiation: Iex_3_3::ElibmaxExc::ElibmaxExc(Iex_3_3::ElibmaxExc const&) Unexecuted instantiation: Iex_3_3::ElibexecExc::ElibexecExc(Iex_3_3::ElibexecExc const&) Unexecuted instantiation: Iex_3_3::EilseqExc::EilseqExc(Iex_3_3::EilseqExc const&) Unexecuted instantiation: Iex_3_3::EnosysExc::EnosysExc(Iex_3_3::EnosysExc const&) Unexecuted instantiation: Iex_3_3::EloopExc::EloopExc(Iex_3_3::EloopExc const&) Unexecuted instantiation: Iex_3_3::ErestartExc::ErestartExc(Iex_3_3::ErestartExc const&) Unexecuted instantiation: Iex_3_3::EstrpipeExc::EstrpipeExc(Iex_3_3::EstrpipeExc const&) Unexecuted instantiation: Iex_3_3::EnotemptyExc::EnotemptyExc(Iex_3_3::EnotemptyExc const&) Unexecuted instantiation: Iex_3_3::EusersExc::EusersExc(Iex_3_3::EusersExc const&) Unexecuted instantiation: Iex_3_3::EnotsockExc::EnotsockExc(Iex_3_3::EnotsockExc const&) Unexecuted instantiation: Iex_3_3::EdestaddrreqExc::EdestaddrreqExc(Iex_3_3::EdestaddrreqExc const&) Unexecuted instantiation: Iex_3_3::EmsgsizeExc::EmsgsizeExc(Iex_3_3::EmsgsizeExc const&) Unexecuted instantiation: Iex_3_3::EprototypeExc::EprototypeExc(Iex_3_3::EprototypeExc const&) Unexecuted instantiation: Iex_3_3::EnoprotooptExc::EnoprotooptExc(Iex_3_3::EnoprotooptExc const&) Unexecuted instantiation: Iex_3_3::EprotonosupportExc::EprotonosupportExc(Iex_3_3::EprotonosupportExc const&) Unexecuted instantiation: Iex_3_3::EsocktnosupportExc::EsocktnosupportExc(Iex_3_3::EsocktnosupportExc const&) Unexecuted instantiation: Iex_3_3::EopnotsuppExc::EopnotsuppExc(Iex_3_3::EopnotsuppExc const&) Unexecuted instantiation: Iex_3_3::EpfnosupportExc::EpfnosupportExc(Iex_3_3::EpfnosupportExc const&) Unexecuted instantiation: Iex_3_3::EafnosupportExc::EafnosupportExc(Iex_3_3::EafnosupportExc const&) Unexecuted instantiation: Iex_3_3::EaddrinuseExc::EaddrinuseExc(Iex_3_3::EaddrinuseExc const&) Unexecuted instantiation: Iex_3_3::EaddrnotavailExc::EaddrnotavailExc(Iex_3_3::EaddrnotavailExc const&) Unexecuted instantiation: Iex_3_3::EnetdownExc::EnetdownExc(Iex_3_3::EnetdownExc const&) Unexecuted instantiation: Iex_3_3::EnetunreachExc::EnetunreachExc(Iex_3_3::EnetunreachExc const&) Unexecuted instantiation: Iex_3_3::EnetresetExc::EnetresetExc(Iex_3_3::EnetresetExc const&) Unexecuted instantiation: Iex_3_3::EconnabortedExc::EconnabortedExc(Iex_3_3::EconnabortedExc const&) Unexecuted instantiation: Iex_3_3::EconnresetExc::EconnresetExc(Iex_3_3::EconnresetExc const&) Unexecuted instantiation: Iex_3_3::EnobufsExc::EnobufsExc(Iex_3_3::EnobufsExc const&) Unexecuted instantiation: Iex_3_3::EisconnExc::EisconnExc(Iex_3_3::EisconnExc const&) Unexecuted instantiation: Iex_3_3::EnotconnExc::EnotconnExc(Iex_3_3::EnotconnExc const&) Unexecuted instantiation: Iex_3_3::EshutdownExc::EshutdownExc(Iex_3_3::EshutdownExc const&) Unexecuted instantiation: Iex_3_3::EtoomanyrefsExc::EtoomanyrefsExc(Iex_3_3::EtoomanyrefsExc const&) Unexecuted instantiation: Iex_3_3::EtimedoutExc::EtimedoutExc(Iex_3_3::EtimedoutExc const&) Unexecuted instantiation: Iex_3_3::EconnrefusedExc::EconnrefusedExc(Iex_3_3::EconnrefusedExc const&) Unexecuted instantiation: Iex_3_3::EhostdownExc::EhostdownExc(Iex_3_3::EhostdownExc const&) Unexecuted instantiation: Iex_3_3::EhostunreachExc::EhostunreachExc(Iex_3_3::EhostunreachExc const&) Unexecuted instantiation: Iex_3_3::EalreadyExc::EalreadyExc(Iex_3_3::EalreadyExc const&) Unexecuted instantiation: Iex_3_3::EinprogressExc::EinprogressExc(Iex_3_3::EinprogressExc const&) Unexecuted instantiation: Iex_3_3::EstaleExc::EstaleExc(Iex_3_3::EstaleExc const&) Unexecuted instantiation: Iex_3_3::EioresidExc::EioresidExc(Iex_3_3::EioresidExc const&) Unexecuted instantiation: Iex_3_3::EucleanExc::EucleanExc(Iex_3_3::EucleanExc const&) Unexecuted instantiation: Iex_3_3::EnotnamExc::EnotnamExc(Iex_3_3::EnotnamExc const&) Unexecuted instantiation: Iex_3_3::EnavailExc::EnavailExc(Iex_3_3::EnavailExc const&) Unexecuted instantiation: Iex_3_3::EisnamExc::EisnamExc(Iex_3_3::EisnamExc const&) Unexecuted instantiation: Iex_3_3::EremoteioExc::EremoteioExc(Iex_3_3::EremoteioExc const&) Unexecuted instantiation: Iex_3_3::EinitExc::EinitExc(Iex_3_3::EinitExc const&) Unexecuted instantiation: Iex_3_3::EremdevExc::EremdevExc(Iex_3_3::EremdevExc const&) Unexecuted instantiation: Iex_3_3::EcanceledExc::EcanceledExc(Iex_3_3::EcanceledExc const&) Unexecuted instantiation: Iex_3_3::EnolimfileExc::EnolimfileExc(Iex_3_3::EnolimfileExc const&) Unexecuted instantiation: Iex_3_3::EproclimExc::EproclimExc(Iex_3_3::EproclimExc const&) Unexecuted instantiation: Iex_3_3::EdisjointExc::EdisjointExc(Iex_3_3::EdisjointExc const&) Unexecuted instantiation: Iex_3_3::EnologinExc::EnologinExc(Iex_3_3::EnologinExc const&) Unexecuted instantiation: Iex_3_3::EloginlimExc::EloginlimExc(Iex_3_3::EloginlimExc const&) Unexecuted instantiation: Iex_3_3::EgrouploopExc::EgrouploopExc(Iex_3_3::EgrouploopExc const&) Unexecuted instantiation: Iex_3_3::EnoattachExc::EnoattachExc(Iex_3_3::EnoattachExc const&) Unexecuted instantiation: Iex_3_3::EnotsupExc::EnotsupExc(Iex_3_3::EnotsupExc const&) Unexecuted instantiation: Iex_3_3::EnoattrExc::EnoattrExc(Iex_3_3::EnoattrExc const&) Unexecuted instantiation: Iex_3_3::EdircorruptedExc::EdircorruptedExc(Iex_3_3::EdircorruptedExc const&) Unexecuted instantiation: Iex_3_3::EdquotExc::EdquotExc(Iex_3_3::EdquotExc const&) Unexecuted instantiation: Iex_3_3::EnfsremoteExc::EnfsremoteExc(Iex_3_3::EnfsremoteExc const&) Unexecuted instantiation: Iex_3_3::EcontrollerExc::EcontrollerExc(Iex_3_3::EcontrollerExc const&) Unexecuted instantiation: Iex_3_3::EnotcontrollerExc::EnotcontrollerExc(Iex_3_3::EnotcontrollerExc const&) Unexecuted instantiation: Iex_3_3::EenqueuedExc::EenqueuedExc(Iex_3_3::EenqueuedExc const&) Unexecuted instantiation: Iex_3_3::EnotenqueuedExc::EnotenqueuedExc(Iex_3_3::EnotenqueuedExc const&) Unexecuted instantiation: Iex_3_3::EjoinedExc::EjoinedExc(Iex_3_3::EjoinedExc const&) Unexecuted instantiation: Iex_3_3::EnotjoinedExc::EnotjoinedExc(Iex_3_3::EnotjoinedExc const&) Unexecuted instantiation: Iex_3_3::EnoprocExc::EnoprocExc(Iex_3_3::EnoprocExc const&) Unexecuted instantiation: Iex_3_3::EmustrunExc::EmustrunExc(Iex_3_3::EmustrunExc const&) Unexecuted instantiation: Iex_3_3::EnotstoppedExc::EnotstoppedExc(Iex_3_3::EnotstoppedExc const&) Unexecuted instantiation: Iex_3_3::EclockcpuExc::EclockcpuExc(Iex_3_3::EclockcpuExc const&) Unexecuted instantiation: Iex_3_3::EinvalstateExc::EinvalstateExc(Iex_3_3::EinvalstateExc const&) Unexecuted instantiation: Iex_3_3::EnoexistExc::EnoexistExc(Iex_3_3::EnoexistExc const&) Unexecuted instantiation: Iex_3_3::EendofminorExc::EendofminorExc(Iex_3_3::EendofminorExc const&) Unexecuted instantiation: Iex_3_3::EbufsizeExc::EbufsizeExc(Iex_3_3::EbufsizeExc const&) Unexecuted instantiation: Iex_3_3::EemptyExc::EemptyExc(Iex_3_3::EemptyExc const&) Unexecuted instantiation: Iex_3_3::EnointrgroupExc::EnointrgroupExc(Iex_3_3::EnointrgroupExc const&) Unexecuted instantiation: Iex_3_3::EinvalmodeExc::EinvalmodeExc(Iex_3_3::EinvalmodeExc const&) Unexecuted instantiation: Iex_3_3::EcantextentExc::EcantextentExc(Iex_3_3::EcantextentExc const&) Unexecuted instantiation: Iex_3_3::EinvaltimeExc::EinvaltimeExc(Iex_3_3::EinvaltimeExc const&) Unexecuted instantiation: Iex_3_3::EdestroyedExc::EdestroyedExc(Iex_3_3::EdestroyedExc const&) Unexecuted instantiation: Iex_3_3::OverflowExc::OverflowExc(Iex_3_3::OverflowExc const&) Unexecuted instantiation: Iex_3_3::UnderflowExc::UnderflowExc(Iex_3_3::UnderflowExc const&) Unexecuted instantiation: Iex_3_3::DivzeroExc::DivzeroExc(Iex_3_3::DivzeroExc const&) Unexecuted instantiation: Iex_3_3::InexactExc::InexactExc(Iex_3_3::InexactExc const&) Unexecuted instantiation: Iex_3_3::InvalidFpOpExc::InvalidFpOpExc(Iex_3_3::InvalidFpOpExc const&) |
129 | 0 | exp name::name (name&& other) noexcept : base (other) \ |
130 | 0 | {} \ Unexecuted instantiation: Iex_3_3::ArgExc::ArgExc(Iex_3_3::ArgExc&&) Unexecuted instantiation: Iex_3_3::LogicExc::LogicExc(Iex_3_3::LogicExc&&) Unexecuted instantiation: Iex_3_3::InputExc::InputExc(Iex_3_3::InputExc&&) Unexecuted instantiation: Iex_3_3::IoExc::IoExc(Iex_3_3::IoExc&&) Unexecuted instantiation: Iex_3_3::MathExc::MathExc(Iex_3_3::MathExc&&) Unexecuted instantiation: Iex_3_3::ErrnoExc::ErrnoExc(Iex_3_3::ErrnoExc&&) Unexecuted instantiation: Iex_3_3::NoImplExc::NoImplExc(Iex_3_3::NoImplExc&&) Unexecuted instantiation: Iex_3_3::NullExc::NullExc(Iex_3_3::NullExc&&) Unexecuted instantiation: Iex_3_3::TypeExc::TypeExc(Iex_3_3::TypeExc&&) Unexecuted instantiation: Iex_3_3::EpermExc::EpermExc(Iex_3_3::EpermExc&&) Unexecuted instantiation: Iex_3_3::EnoentExc::EnoentExc(Iex_3_3::EnoentExc&&) Unexecuted instantiation: Iex_3_3::EsrchExc::EsrchExc(Iex_3_3::EsrchExc&&) Unexecuted instantiation: Iex_3_3::EintrExc::EintrExc(Iex_3_3::EintrExc&&) Unexecuted instantiation: Iex_3_3::EioExc::EioExc(Iex_3_3::EioExc&&) Unexecuted instantiation: Iex_3_3::EnxioExc::EnxioExc(Iex_3_3::EnxioExc&&) Unexecuted instantiation: Iex_3_3::E2bigExc::E2bigExc(Iex_3_3::E2bigExc&&) Unexecuted instantiation: Iex_3_3::EnoexecExc::EnoexecExc(Iex_3_3::EnoexecExc&&) Unexecuted instantiation: Iex_3_3::EbadfExc::EbadfExc(Iex_3_3::EbadfExc&&) Unexecuted instantiation: Iex_3_3::EchildExc::EchildExc(Iex_3_3::EchildExc&&) Unexecuted instantiation: Iex_3_3::EagainExc::EagainExc(Iex_3_3::EagainExc&&) Unexecuted instantiation: Iex_3_3::EnomemExc::EnomemExc(Iex_3_3::EnomemExc&&) Unexecuted instantiation: Iex_3_3::EaccesExc::EaccesExc(Iex_3_3::EaccesExc&&) Unexecuted instantiation: Iex_3_3::EfaultExc::EfaultExc(Iex_3_3::EfaultExc&&) Unexecuted instantiation: Iex_3_3::EnotblkExc::EnotblkExc(Iex_3_3::EnotblkExc&&) Unexecuted instantiation: Iex_3_3::EbusyExc::EbusyExc(Iex_3_3::EbusyExc&&) Unexecuted instantiation: Iex_3_3::EexistExc::EexistExc(Iex_3_3::EexistExc&&) Unexecuted instantiation: Iex_3_3::ExdevExc::ExdevExc(Iex_3_3::ExdevExc&&) Unexecuted instantiation: Iex_3_3::EnodevExc::EnodevExc(Iex_3_3::EnodevExc&&) Unexecuted instantiation: Iex_3_3::EnotdirExc::EnotdirExc(Iex_3_3::EnotdirExc&&) Unexecuted instantiation: Iex_3_3::EisdirExc::EisdirExc(Iex_3_3::EisdirExc&&) Unexecuted instantiation: Iex_3_3::EinvalExc::EinvalExc(Iex_3_3::EinvalExc&&) Unexecuted instantiation: Iex_3_3::EnfileExc::EnfileExc(Iex_3_3::EnfileExc&&) Unexecuted instantiation: Iex_3_3::EmfileExc::EmfileExc(Iex_3_3::EmfileExc&&) Unexecuted instantiation: Iex_3_3::EnottyExc::EnottyExc(Iex_3_3::EnottyExc&&) Unexecuted instantiation: Iex_3_3::EtxtbsyExc::EtxtbsyExc(Iex_3_3::EtxtbsyExc&&) Unexecuted instantiation: Iex_3_3::EfbigExc::EfbigExc(Iex_3_3::EfbigExc&&) Unexecuted instantiation: Iex_3_3::EnospcExc::EnospcExc(Iex_3_3::EnospcExc&&) Unexecuted instantiation: Iex_3_3::EspipeExc::EspipeExc(Iex_3_3::EspipeExc&&) Unexecuted instantiation: Iex_3_3::ErofsExc::ErofsExc(Iex_3_3::ErofsExc&&) Unexecuted instantiation: Iex_3_3::EmlinkExc::EmlinkExc(Iex_3_3::EmlinkExc&&) Unexecuted instantiation: Iex_3_3::EpipeExc::EpipeExc(Iex_3_3::EpipeExc&&) Unexecuted instantiation: Iex_3_3::EdomExc::EdomExc(Iex_3_3::EdomExc&&) Unexecuted instantiation: Iex_3_3::ErangeExc::ErangeExc(Iex_3_3::ErangeExc&&) Unexecuted instantiation: Iex_3_3::EnomsgExc::EnomsgExc(Iex_3_3::EnomsgExc&&) Unexecuted instantiation: Iex_3_3::EidrmExc::EidrmExc(Iex_3_3::EidrmExc&&) Unexecuted instantiation: Iex_3_3::EchrngExc::EchrngExc(Iex_3_3::EchrngExc&&) Unexecuted instantiation: Iex_3_3::El2nsyncExc::El2nsyncExc(Iex_3_3::El2nsyncExc&&) Unexecuted instantiation: Iex_3_3::El3hltExc::El3hltExc(Iex_3_3::El3hltExc&&) Unexecuted instantiation: Iex_3_3::El3rstExc::El3rstExc(Iex_3_3::El3rstExc&&) Unexecuted instantiation: Iex_3_3::ElnrngExc::ElnrngExc(Iex_3_3::ElnrngExc&&) Unexecuted instantiation: Iex_3_3::EunatchExc::EunatchExc(Iex_3_3::EunatchExc&&) Unexecuted instantiation: Iex_3_3::EnocsiExc::EnocsiExc(Iex_3_3::EnocsiExc&&) Unexecuted instantiation: Iex_3_3::El2hltExc::El2hltExc(Iex_3_3::El2hltExc&&) Unexecuted instantiation: Iex_3_3::EdeadlkExc::EdeadlkExc(Iex_3_3::EdeadlkExc&&) Unexecuted instantiation: Iex_3_3::EnolckExc::EnolckExc(Iex_3_3::EnolckExc&&) Unexecuted instantiation: Iex_3_3::EbadeExc::EbadeExc(Iex_3_3::EbadeExc&&) Unexecuted instantiation: Iex_3_3::EbadrExc::EbadrExc(Iex_3_3::EbadrExc&&) Unexecuted instantiation: Iex_3_3::ExfullExc::ExfullExc(Iex_3_3::ExfullExc&&) Unexecuted instantiation: Iex_3_3::EnoanoExc::EnoanoExc(Iex_3_3::EnoanoExc&&) Unexecuted instantiation: Iex_3_3::EbadrqcExc::EbadrqcExc(Iex_3_3::EbadrqcExc&&) Unexecuted instantiation: Iex_3_3::EbadsltExc::EbadsltExc(Iex_3_3::EbadsltExc&&) Unexecuted instantiation: Iex_3_3::EdeadlockExc::EdeadlockExc(Iex_3_3::EdeadlockExc&&) Unexecuted instantiation: Iex_3_3::EbfontExc::EbfontExc(Iex_3_3::EbfontExc&&) Unexecuted instantiation: Iex_3_3::EnostrExc::EnostrExc(Iex_3_3::EnostrExc&&) Unexecuted instantiation: Iex_3_3::EnodataExc::EnodataExc(Iex_3_3::EnodataExc&&) Unexecuted instantiation: Iex_3_3::EtimeExc::EtimeExc(Iex_3_3::EtimeExc&&) Unexecuted instantiation: Iex_3_3::EnosrExc::EnosrExc(Iex_3_3::EnosrExc&&) Unexecuted instantiation: Iex_3_3::EnonetExc::EnonetExc(Iex_3_3::EnonetExc&&) Unexecuted instantiation: Iex_3_3::EnopkgExc::EnopkgExc(Iex_3_3::EnopkgExc&&) Unexecuted instantiation: Iex_3_3::EremoteExc::EremoteExc(Iex_3_3::EremoteExc&&) Unexecuted instantiation: Iex_3_3::EnolinkExc::EnolinkExc(Iex_3_3::EnolinkExc&&) Unexecuted instantiation: Iex_3_3::EadvExc::EadvExc(Iex_3_3::EadvExc&&) Unexecuted instantiation: Iex_3_3::EsrmntExc::EsrmntExc(Iex_3_3::EsrmntExc&&) Unexecuted instantiation: Iex_3_3::EcommExc::EcommExc(Iex_3_3::EcommExc&&) Unexecuted instantiation: Iex_3_3::EprotoExc::EprotoExc(Iex_3_3::EprotoExc&&) Unexecuted instantiation: Iex_3_3::EmultihopExc::EmultihopExc(Iex_3_3::EmultihopExc&&) Unexecuted instantiation: Iex_3_3::EbadmsgExc::EbadmsgExc(Iex_3_3::EbadmsgExc&&) Unexecuted instantiation: Iex_3_3::EnametoolongExc::EnametoolongExc(Iex_3_3::EnametoolongExc&&) Unexecuted instantiation: Iex_3_3::EoverflowExc::EoverflowExc(Iex_3_3::EoverflowExc&&) Unexecuted instantiation: Iex_3_3::EnotuniqExc::EnotuniqExc(Iex_3_3::EnotuniqExc&&) Unexecuted instantiation: Iex_3_3::EbadfdExc::EbadfdExc(Iex_3_3::EbadfdExc&&) Unexecuted instantiation: Iex_3_3::EremchgExc::EremchgExc(Iex_3_3::EremchgExc&&) Unexecuted instantiation: Iex_3_3::ElibaccExc::ElibaccExc(Iex_3_3::ElibaccExc&&) Unexecuted instantiation: Iex_3_3::ElibbadExc::ElibbadExc(Iex_3_3::ElibbadExc&&) Unexecuted instantiation: Iex_3_3::ElibscnExc::ElibscnExc(Iex_3_3::ElibscnExc&&) Unexecuted instantiation: Iex_3_3::ElibmaxExc::ElibmaxExc(Iex_3_3::ElibmaxExc&&) Unexecuted instantiation: Iex_3_3::ElibexecExc::ElibexecExc(Iex_3_3::ElibexecExc&&) Unexecuted instantiation: Iex_3_3::EilseqExc::EilseqExc(Iex_3_3::EilseqExc&&) Unexecuted instantiation: Iex_3_3::EnosysExc::EnosysExc(Iex_3_3::EnosysExc&&) Unexecuted instantiation: Iex_3_3::EloopExc::EloopExc(Iex_3_3::EloopExc&&) Unexecuted instantiation: Iex_3_3::ErestartExc::ErestartExc(Iex_3_3::ErestartExc&&) Unexecuted instantiation: Iex_3_3::EstrpipeExc::EstrpipeExc(Iex_3_3::EstrpipeExc&&) Unexecuted instantiation: Iex_3_3::EnotemptyExc::EnotemptyExc(Iex_3_3::EnotemptyExc&&) Unexecuted instantiation: Iex_3_3::EusersExc::EusersExc(Iex_3_3::EusersExc&&) Unexecuted instantiation: Iex_3_3::EnotsockExc::EnotsockExc(Iex_3_3::EnotsockExc&&) Unexecuted instantiation: Iex_3_3::EdestaddrreqExc::EdestaddrreqExc(Iex_3_3::EdestaddrreqExc&&) Unexecuted instantiation: Iex_3_3::EmsgsizeExc::EmsgsizeExc(Iex_3_3::EmsgsizeExc&&) Unexecuted instantiation: Iex_3_3::EprototypeExc::EprototypeExc(Iex_3_3::EprototypeExc&&) Unexecuted instantiation: Iex_3_3::EnoprotooptExc::EnoprotooptExc(Iex_3_3::EnoprotooptExc&&) Unexecuted instantiation: Iex_3_3::EprotonosupportExc::EprotonosupportExc(Iex_3_3::EprotonosupportExc&&) Unexecuted instantiation: Iex_3_3::EsocktnosupportExc::EsocktnosupportExc(Iex_3_3::EsocktnosupportExc&&) Unexecuted instantiation: Iex_3_3::EopnotsuppExc::EopnotsuppExc(Iex_3_3::EopnotsuppExc&&) Unexecuted instantiation: Iex_3_3::EpfnosupportExc::EpfnosupportExc(Iex_3_3::EpfnosupportExc&&) Unexecuted instantiation: Iex_3_3::EafnosupportExc::EafnosupportExc(Iex_3_3::EafnosupportExc&&) Unexecuted instantiation: Iex_3_3::EaddrinuseExc::EaddrinuseExc(Iex_3_3::EaddrinuseExc&&) Unexecuted instantiation: Iex_3_3::EaddrnotavailExc::EaddrnotavailExc(Iex_3_3::EaddrnotavailExc&&) Unexecuted instantiation: Iex_3_3::EnetdownExc::EnetdownExc(Iex_3_3::EnetdownExc&&) Unexecuted instantiation: Iex_3_3::EnetunreachExc::EnetunreachExc(Iex_3_3::EnetunreachExc&&) Unexecuted instantiation: Iex_3_3::EnetresetExc::EnetresetExc(Iex_3_3::EnetresetExc&&) Unexecuted instantiation: Iex_3_3::EconnabortedExc::EconnabortedExc(Iex_3_3::EconnabortedExc&&) Unexecuted instantiation: Iex_3_3::EconnresetExc::EconnresetExc(Iex_3_3::EconnresetExc&&) Unexecuted instantiation: Iex_3_3::EnobufsExc::EnobufsExc(Iex_3_3::EnobufsExc&&) Unexecuted instantiation: Iex_3_3::EisconnExc::EisconnExc(Iex_3_3::EisconnExc&&) Unexecuted instantiation: Iex_3_3::EnotconnExc::EnotconnExc(Iex_3_3::EnotconnExc&&) Unexecuted instantiation: Iex_3_3::EshutdownExc::EshutdownExc(Iex_3_3::EshutdownExc&&) Unexecuted instantiation: Iex_3_3::EtoomanyrefsExc::EtoomanyrefsExc(Iex_3_3::EtoomanyrefsExc&&) Unexecuted instantiation: Iex_3_3::EtimedoutExc::EtimedoutExc(Iex_3_3::EtimedoutExc&&) Unexecuted instantiation: Iex_3_3::EconnrefusedExc::EconnrefusedExc(Iex_3_3::EconnrefusedExc&&) Unexecuted instantiation: Iex_3_3::EhostdownExc::EhostdownExc(Iex_3_3::EhostdownExc&&) Unexecuted instantiation: Iex_3_3::EhostunreachExc::EhostunreachExc(Iex_3_3::EhostunreachExc&&) Unexecuted instantiation: Iex_3_3::EalreadyExc::EalreadyExc(Iex_3_3::EalreadyExc&&) Unexecuted instantiation: Iex_3_3::EinprogressExc::EinprogressExc(Iex_3_3::EinprogressExc&&) Unexecuted instantiation: Iex_3_3::EstaleExc::EstaleExc(Iex_3_3::EstaleExc&&) Unexecuted instantiation: Iex_3_3::EioresidExc::EioresidExc(Iex_3_3::EioresidExc&&) Unexecuted instantiation: Iex_3_3::EucleanExc::EucleanExc(Iex_3_3::EucleanExc&&) Unexecuted instantiation: Iex_3_3::EnotnamExc::EnotnamExc(Iex_3_3::EnotnamExc&&) Unexecuted instantiation: Iex_3_3::EnavailExc::EnavailExc(Iex_3_3::EnavailExc&&) Unexecuted instantiation: Iex_3_3::EisnamExc::EisnamExc(Iex_3_3::EisnamExc&&) Unexecuted instantiation: Iex_3_3::EremoteioExc::EremoteioExc(Iex_3_3::EremoteioExc&&) Unexecuted instantiation: Iex_3_3::EinitExc::EinitExc(Iex_3_3::EinitExc&&) Unexecuted instantiation: Iex_3_3::EremdevExc::EremdevExc(Iex_3_3::EremdevExc&&) Unexecuted instantiation: Iex_3_3::EcanceledExc::EcanceledExc(Iex_3_3::EcanceledExc&&) Unexecuted instantiation: Iex_3_3::EnolimfileExc::EnolimfileExc(Iex_3_3::EnolimfileExc&&) Unexecuted instantiation: Iex_3_3::EproclimExc::EproclimExc(Iex_3_3::EproclimExc&&) Unexecuted instantiation: Iex_3_3::EdisjointExc::EdisjointExc(Iex_3_3::EdisjointExc&&) Unexecuted instantiation: Iex_3_3::EnologinExc::EnologinExc(Iex_3_3::EnologinExc&&) Unexecuted instantiation: Iex_3_3::EloginlimExc::EloginlimExc(Iex_3_3::EloginlimExc&&) Unexecuted instantiation: Iex_3_3::EgrouploopExc::EgrouploopExc(Iex_3_3::EgrouploopExc&&) Unexecuted instantiation: Iex_3_3::EnoattachExc::EnoattachExc(Iex_3_3::EnoattachExc&&) Unexecuted instantiation: Iex_3_3::EnotsupExc::EnotsupExc(Iex_3_3::EnotsupExc&&) Unexecuted instantiation: Iex_3_3::EnoattrExc::EnoattrExc(Iex_3_3::EnoattrExc&&) Unexecuted instantiation: Iex_3_3::EdircorruptedExc::EdircorruptedExc(Iex_3_3::EdircorruptedExc&&) Unexecuted instantiation: Iex_3_3::EdquotExc::EdquotExc(Iex_3_3::EdquotExc&&) Unexecuted instantiation: Iex_3_3::EnfsremoteExc::EnfsremoteExc(Iex_3_3::EnfsremoteExc&&) Unexecuted instantiation: Iex_3_3::EcontrollerExc::EcontrollerExc(Iex_3_3::EcontrollerExc&&) Unexecuted instantiation: Iex_3_3::EnotcontrollerExc::EnotcontrollerExc(Iex_3_3::EnotcontrollerExc&&) Unexecuted instantiation: Iex_3_3::EenqueuedExc::EenqueuedExc(Iex_3_3::EenqueuedExc&&) Unexecuted instantiation: Iex_3_3::EnotenqueuedExc::EnotenqueuedExc(Iex_3_3::EnotenqueuedExc&&) Unexecuted instantiation: Iex_3_3::EjoinedExc::EjoinedExc(Iex_3_3::EjoinedExc&&) Unexecuted instantiation: Iex_3_3::EnotjoinedExc::EnotjoinedExc(Iex_3_3::EnotjoinedExc&&) Unexecuted instantiation: Iex_3_3::EnoprocExc::EnoprocExc(Iex_3_3::EnoprocExc&&) Unexecuted instantiation: Iex_3_3::EmustrunExc::EmustrunExc(Iex_3_3::EmustrunExc&&) Unexecuted instantiation: Iex_3_3::EnotstoppedExc::EnotstoppedExc(Iex_3_3::EnotstoppedExc&&) Unexecuted instantiation: Iex_3_3::EclockcpuExc::EclockcpuExc(Iex_3_3::EclockcpuExc&&) Unexecuted instantiation: Iex_3_3::EinvalstateExc::EinvalstateExc(Iex_3_3::EinvalstateExc&&) Unexecuted instantiation: Iex_3_3::EnoexistExc::EnoexistExc(Iex_3_3::EnoexistExc&&) Unexecuted instantiation: Iex_3_3::EendofminorExc::EendofminorExc(Iex_3_3::EendofminorExc&&) Unexecuted instantiation: Iex_3_3::EbufsizeExc::EbufsizeExc(Iex_3_3::EbufsizeExc&&) Unexecuted instantiation: Iex_3_3::EemptyExc::EemptyExc(Iex_3_3::EemptyExc&&) Unexecuted instantiation: Iex_3_3::EnointrgroupExc::EnointrgroupExc(Iex_3_3::EnointrgroupExc&&) Unexecuted instantiation: Iex_3_3::EinvalmodeExc::EinvalmodeExc(Iex_3_3::EinvalmodeExc&&) Unexecuted instantiation: Iex_3_3::EcantextentExc::EcantextentExc(Iex_3_3::EcantextentExc&&) Unexecuted instantiation: Iex_3_3::EinvaltimeExc::EinvaltimeExc(Iex_3_3::EinvaltimeExc&&) Unexecuted instantiation: Iex_3_3::EdestroyedExc::EdestroyedExc(Iex_3_3::EdestroyedExc&&) Unexecuted instantiation: Iex_3_3::OverflowExc::OverflowExc(Iex_3_3::OverflowExc&&) Unexecuted instantiation: Iex_3_3::UnderflowExc::UnderflowExc(Iex_3_3::UnderflowExc&&) Unexecuted instantiation: Iex_3_3::DivzeroExc::DivzeroExc(Iex_3_3::DivzeroExc&&) Unexecuted instantiation: Iex_3_3::InexactExc::InexactExc(Iex_3_3::InexactExc&&) Unexecuted instantiation: Iex_3_3::InvalidFpOpExc::InvalidFpOpExc(Iex_3_3::InvalidFpOpExc&&) |
131 | | exp name& name::operator= (name& other) \ |
132 | 0 | { \ |
133 | 0 | base::operator= (other); \ |
134 | 0 | return *this; \ |
135 | 0 | } \ Unexecuted instantiation: Iex_3_3::ArgExc::operator=(Iex_3_3::ArgExc&) Unexecuted instantiation: Iex_3_3::LogicExc::operator=(Iex_3_3::LogicExc&) Unexecuted instantiation: Iex_3_3::InputExc::operator=(Iex_3_3::InputExc&) Unexecuted instantiation: Iex_3_3::IoExc::operator=(Iex_3_3::IoExc&) Unexecuted instantiation: Iex_3_3::MathExc::operator=(Iex_3_3::MathExc&) Unexecuted instantiation: Iex_3_3::ErrnoExc::operator=(Iex_3_3::ErrnoExc&) Unexecuted instantiation: Iex_3_3::NoImplExc::operator=(Iex_3_3::NoImplExc&) Unexecuted instantiation: Iex_3_3::NullExc::operator=(Iex_3_3::NullExc&) Unexecuted instantiation: Iex_3_3::TypeExc::operator=(Iex_3_3::TypeExc&) Unexecuted instantiation: Iex_3_3::EpermExc::operator=(Iex_3_3::EpermExc&) Unexecuted instantiation: Iex_3_3::EnoentExc::operator=(Iex_3_3::EnoentExc&) Unexecuted instantiation: Iex_3_3::EsrchExc::operator=(Iex_3_3::EsrchExc&) Unexecuted instantiation: Iex_3_3::EintrExc::operator=(Iex_3_3::EintrExc&) Unexecuted instantiation: Iex_3_3::EioExc::operator=(Iex_3_3::EioExc&) Unexecuted instantiation: Iex_3_3::EnxioExc::operator=(Iex_3_3::EnxioExc&) Unexecuted instantiation: Iex_3_3::E2bigExc::operator=(Iex_3_3::E2bigExc&) Unexecuted instantiation: Iex_3_3::EnoexecExc::operator=(Iex_3_3::EnoexecExc&) Unexecuted instantiation: Iex_3_3::EbadfExc::operator=(Iex_3_3::EbadfExc&) Unexecuted instantiation: Iex_3_3::EchildExc::operator=(Iex_3_3::EchildExc&) Unexecuted instantiation: Iex_3_3::EagainExc::operator=(Iex_3_3::EagainExc&) Unexecuted instantiation: Iex_3_3::EnomemExc::operator=(Iex_3_3::EnomemExc&) Unexecuted instantiation: Iex_3_3::EaccesExc::operator=(Iex_3_3::EaccesExc&) Unexecuted instantiation: Iex_3_3::EfaultExc::operator=(Iex_3_3::EfaultExc&) Unexecuted instantiation: Iex_3_3::EnotblkExc::operator=(Iex_3_3::EnotblkExc&) Unexecuted instantiation: Iex_3_3::EbusyExc::operator=(Iex_3_3::EbusyExc&) Unexecuted instantiation: Iex_3_3::EexistExc::operator=(Iex_3_3::EexistExc&) Unexecuted instantiation: Iex_3_3::ExdevExc::operator=(Iex_3_3::ExdevExc&) Unexecuted instantiation: Iex_3_3::EnodevExc::operator=(Iex_3_3::EnodevExc&) Unexecuted instantiation: Iex_3_3::EnotdirExc::operator=(Iex_3_3::EnotdirExc&) Unexecuted instantiation: Iex_3_3::EisdirExc::operator=(Iex_3_3::EisdirExc&) Unexecuted instantiation: Iex_3_3::EinvalExc::operator=(Iex_3_3::EinvalExc&) Unexecuted instantiation: Iex_3_3::EnfileExc::operator=(Iex_3_3::EnfileExc&) Unexecuted instantiation: Iex_3_3::EmfileExc::operator=(Iex_3_3::EmfileExc&) Unexecuted instantiation: Iex_3_3::EnottyExc::operator=(Iex_3_3::EnottyExc&) Unexecuted instantiation: Iex_3_3::EtxtbsyExc::operator=(Iex_3_3::EtxtbsyExc&) Unexecuted instantiation: Iex_3_3::EfbigExc::operator=(Iex_3_3::EfbigExc&) Unexecuted instantiation: Iex_3_3::EnospcExc::operator=(Iex_3_3::EnospcExc&) Unexecuted instantiation: Iex_3_3::EspipeExc::operator=(Iex_3_3::EspipeExc&) Unexecuted instantiation: Iex_3_3::ErofsExc::operator=(Iex_3_3::ErofsExc&) Unexecuted instantiation: Iex_3_3::EmlinkExc::operator=(Iex_3_3::EmlinkExc&) Unexecuted instantiation: Iex_3_3::EpipeExc::operator=(Iex_3_3::EpipeExc&) Unexecuted instantiation: Iex_3_3::EdomExc::operator=(Iex_3_3::EdomExc&) Unexecuted instantiation: Iex_3_3::ErangeExc::operator=(Iex_3_3::ErangeExc&) Unexecuted instantiation: Iex_3_3::EnomsgExc::operator=(Iex_3_3::EnomsgExc&) Unexecuted instantiation: Iex_3_3::EidrmExc::operator=(Iex_3_3::EidrmExc&) Unexecuted instantiation: Iex_3_3::EchrngExc::operator=(Iex_3_3::EchrngExc&) Unexecuted instantiation: Iex_3_3::El2nsyncExc::operator=(Iex_3_3::El2nsyncExc&) Unexecuted instantiation: Iex_3_3::El3hltExc::operator=(Iex_3_3::El3hltExc&) Unexecuted instantiation: Iex_3_3::El3rstExc::operator=(Iex_3_3::El3rstExc&) Unexecuted instantiation: Iex_3_3::ElnrngExc::operator=(Iex_3_3::ElnrngExc&) Unexecuted instantiation: Iex_3_3::EunatchExc::operator=(Iex_3_3::EunatchExc&) Unexecuted instantiation: Iex_3_3::EnocsiExc::operator=(Iex_3_3::EnocsiExc&) Unexecuted instantiation: Iex_3_3::El2hltExc::operator=(Iex_3_3::El2hltExc&) Unexecuted instantiation: Iex_3_3::EdeadlkExc::operator=(Iex_3_3::EdeadlkExc&) Unexecuted instantiation: Iex_3_3::EnolckExc::operator=(Iex_3_3::EnolckExc&) Unexecuted instantiation: Iex_3_3::EbadeExc::operator=(Iex_3_3::EbadeExc&) Unexecuted instantiation: Iex_3_3::EbadrExc::operator=(Iex_3_3::EbadrExc&) Unexecuted instantiation: Iex_3_3::ExfullExc::operator=(Iex_3_3::ExfullExc&) Unexecuted instantiation: Iex_3_3::EnoanoExc::operator=(Iex_3_3::EnoanoExc&) Unexecuted instantiation: Iex_3_3::EbadrqcExc::operator=(Iex_3_3::EbadrqcExc&) Unexecuted instantiation: Iex_3_3::EbadsltExc::operator=(Iex_3_3::EbadsltExc&) Unexecuted instantiation: Iex_3_3::EdeadlockExc::operator=(Iex_3_3::EdeadlockExc&) Unexecuted instantiation: Iex_3_3::EbfontExc::operator=(Iex_3_3::EbfontExc&) Unexecuted instantiation: Iex_3_3::EnostrExc::operator=(Iex_3_3::EnostrExc&) Unexecuted instantiation: Iex_3_3::EnodataExc::operator=(Iex_3_3::EnodataExc&) Unexecuted instantiation: Iex_3_3::EtimeExc::operator=(Iex_3_3::EtimeExc&) Unexecuted instantiation: Iex_3_3::EnosrExc::operator=(Iex_3_3::EnosrExc&) Unexecuted instantiation: Iex_3_3::EnonetExc::operator=(Iex_3_3::EnonetExc&) Unexecuted instantiation: Iex_3_3::EnopkgExc::operator=(Iex_3_3::EnopkgExc&) Unexecuted instantiation: Iex_3_3::EremoteExc::operator=(Iex_3_3::EremoteExc&) Unexecuted instantiation: Iex_3_3::EnolinkExc::operator=(Iex_3_3::EnolinkExc&) Unexecuted instantiation: Iex_3_3::EadvExc::operator=(Iex_3_3::EadvExc&) Unexecuted instantiation: Iex_3_3::EsrmntExc::operator=(Iex_3_3::EsrmntExc&) Unexecuted instantiation: Iex_3_3::EcommExc::operator=(Iex_3_3::EcommExc&) Unexecuted instantiation: Iex_3_3::EprotoExc::operator=(Iex_3_3::EprotoExc&) Unexecuted instantiation: Iex_3_3::EmultihopExc::operator=(Iex_3_3::EmultihopExc&) Unexecuted instantiation: Iex_3_3::EbadmsgExc::operator=(Iex_3_3::EbadmsgExc&) Unexecuted instantiation: Iex_3_3::EnametoolongExc::operator=(Iex_3_3::EnametoolongExc&) Unexecuted instantiation: Iex_3_3::EoverflowExc::operator=(Iex_3_3::EoverflowExc&) Unexecuted instantiation: Iex_3_3::EnotuniqExc::operator=(Iex_3_3::EnotuniqExc&) Unexecuted instantiation: Iex_3_3::EbadfdExc::operator=(Iex_3_3::EbadfdExc&) Unexecuted instantiation: Iex_3_3::EremchgExc::operator=(Iex_3_3::EremchgExc&) Unexecuted instantiation: Iex_3_3::ElibaccExc::operator=(Iex_3_3::ElibaccExc&) Unexecuted instantiation: Iex_3_3::ElibbadExc::operator=(Iex_3_3::ElibbadExc&) Unexecuted instantiation: Iex_3_3::ElibscnExc::operator=(Iex_3_3::ElibscnExc&) Unexecuted instantiation: Iex_3_3::ElibmaxExc::operator=(Iex_3_3::ElibmaxExc&) Unexecuted instantiation: Iex_3_3::ElibexecExc::operator=(Iex_3_3::ElibexecExc&) Unexecuted instantiation: Iex_3_3::EilseqExc::operator=(Iex_3_3::EilseqExc&) Unexecuted instantiation: Iex_3_3::EnosysExc::operator=(Iex_3_3::EnosysExc&) Unexecuted instantiation: Iex_3_3::EloopExc::operator=(Iex_3_3::EloopExc&) Unexecuted instantiation: Iex_3_3::ErestartExc::operator=(Iex_3_3::ErestartExc&) Unexecuted instantiation: Iex_3_3::EstrpipeExc::operator=(Iex_3_3::EstrpipeExc&) Unexecuted instantiation: Iex_3_3::EnotemptyExc::operator=(Iex_3_3::EnotemptyExc&) Unexecuted instantiation: Iex_3_3::EusersExc::operator=(Iex_3_3::EusersExc&) Unexecuted instantiation: Iex_3_3::EnotsockExc::operator=(Iex_3_3::EnotsockExc&) Unexecuted instantiation: Iex_3_3::EdestaddrreqExc::operator=(Iex_3_3::EdestaddrreqExc&) Unexecuted instantiation: Iex_3_3::EmsgsizeExc::operator=(Iex_3_3::EmsgsizeExc&) Unexecuted instantiation: Iex_3_3::EprototypeExc::operator=(Iex_3_3::EprototypeExc&) Unexecuted instantiation: Iex_3_3::EnoprotooptExc::operator=(Iex_3_3::EnoprotooptExc&) Unexecuted instantiation: Iex_3_3::EprotonosupportExc::operator=(Iex_3_3::EprotonosupportExc&) Unexecuted instantiation: Iex_3_3::EsocktnosupportExc::operator=(Iex_3_3::EsocktnosupportExc&) Unexecuted instantiation: Iex_3_3::EopnotsuppExc::operator=(Iex_3_3::EopnotsuppExc&) Unexecuted instantiation: Iex_3_3::EpfnosupportExc::operator=(Iex_3_3::EpfnosupportExc&) Unexecuted instantiation: Iex_3_3::EafnosupportExc::operator=(Iex_3_3::EafnosupportExc&) Unexecuted instantiation: Iex_3_3::EaddrinuseExc::operator=(Iex_3_3::EaddrinuseExc&) Unexecuted instantiation: Iex_3_3::EaddrnotavailExc::operator=(Iex_3_3::EaddrnotavailExc&) Unexecuted instantiation: Iex_3_3::EnetdownExc::operator=(Iex_3_3::EnetdownExc&) Unexecuted instantiation: Iex_3_3::EnetunreachExc::operator=(Iex_3_3::EnetunreachExc&) Unexecuted instantiation: Iex_3_3::EnetresetExc::operator=(Iex_3_3::EnetresetExc&) Unexecuted instantiation: Iex_3_3::EconnabortedExc::operator=(Iex_3_3::EconnabortedExc&) Unexecuted instantiation: Iex_3_3::EconnresetExc::operator=(Iex_3_3::EconnresetExc&) Unexecuted instantiation: Iex_3_3::EnobufsExc::operator=(Iex_3_3::EnobufsExc&) Unexecuted instantiation: Iex_3_3::EisconnExc::operator=(Iex_3_3::EisconnExc&) Unexecuted instantiation: Iex_3_3::EnotconnExc::operator=(Iex_3_3::EnotconnExc&) Unexecuted instantiation: Iex_3_3::EshutdownExc::operator=(Iex_3_3::EshutdownExc&) Unexecuted instantiation: Iex_3_3::EtoomanyrefsExc::operator=(Iex_3_3::EtoomanyrefsExc&) Unexecuted instantiation: Iex_3_3::EtimedoutExc::operator=(Iex_3_3::EtimedoutExc&) Unexecuted instantiation: Iex_3_3::EconnrefusedExc::operator=(Iex_3_3::EconnrefusedExc&) Unexecuted instantiation: Iex_3_3::EhostdownExc::operator=(Iex_3_3::EhostdownExc&) Unexecuted instantiation: Iex_3_3::EhostunreachExc::operator=(Iex_3_3::EhostunreachExc&) Unexecuted instantiation: Iex_3_3::EalreadyExc::operator=(Iex_3_3::EalreadyExc&) Unexecuted instantiation: Iex_3_3::EinprogressExc::operator=(Iex_3_3::EinprogressExc&) Unexecuted instantiation: Iex_3_3::EstaleExc::operator=(Iex_3_3::EstaleExc&) Unexecuted instantiation: Iex_3_3::EioresidExc::operator=(Iex_3_3::EioresidExc&) Unexecuted instantiation: Iex_3_3::EucleanExc::operator=(Iex_3_3::EucleanExc&) Unexecuted instantiation: Iex_3_3::EnotnamExc::operator=(Iex_3_3::EnotnamExc&) Unexecuted instantiation: Iex_3_3::EnavailExc::operator=(Iex_3_3::EnavailExc&) Unexecuted instantiation: Iex_3_3::EisnamExc::operator=(Iex_3_3::EisnamExc&) Unexecuted instantiation: Iex_3_3::EremoteioExc::operator=(Iex_3_3::EremoteioExc&) Unexecuted instantiation: Iex_3_3::EinitExc::operator=(Iex_3_3::EinitExc&) Unexecuted instantiation: Iex_3_3::EremdevExc::operator=(Iex_3_3::EremdevExc&) Unexecuted instantiation: Iex_3_3::EcanceledExc::operator=(Iex_3_3::EcanceledExc&) Unexecuted instantiation: Iex_3_3::EnolimfileExc::operator=(Iex_3_3::EnolimfileExc&) Unexecuted instantiation: Iex_3_3::EproclimExc::operator=(Iex_3_3::EproclimExc&) Unexecuted instantiation: Iex_3_3::EdisjointExc::operator=(Iex_3_3::EdisjointExc&) Unexecuted instantiation: Iex_3_3::EnologinExc::operator=(Iex_3_3::EnologinExc&) Unexecuted instantiation: Iex_3_3::EloginlimExc::operator=(Iex_3_3::EloginlimExc&) Unexecuted instantiation: Iex_3_3::EgrouploopExc::operator=(Iex_3_3::EgrouploopExc&) Unexecuted instantiation: Iex_3_3::EnoattachExc::operator=(Iex_3_3::EnoattachExc&) Unexecuted instantiation: Iex_3_3::EnotsupExc::operator=(Iex_3_3::EnotsupExc&) Unexecuted instantiation: Iex_3_3::EnoattrExc::operator=(Iex_3_3::EnoattrExc&) Unexecuted instantiation: Iex_3_3::EdircorruptedExc::operator=(Iex_3_3::EdircorruptedExc&) Unexecuted instantiation: Iex_3_3::EdquotExc::operator=(Iex_3_3::EdquotExc&) Unexecuted instantiation: Iex_3_3::EnfsremoteExc::operator=(Iex_3_3::EnfsremoteExc&) Unexecuted instantiation: Iex_3_3::EcontrollerExc::operator=(Iex_3_3::EcontrollerExc&) Unexecuted instantiation: Iex_3_3::EnotcontrollerExc::operator=(Iex_3_3::EnotcontrollerExc&) Unexecuted instantiation: Iex_3_3::EenqueuedExc::operator=(Iex_3_3::EenqueuedExc&) Unexecuted instantiation: Iex_3_3::EnotenqueuedExc::operator=(Iex_3_3::EnotenqueuedExc&) Unexecuted instantiation: Iex_3_3::EjoinedExc::operator=(Iex_3_3::EjoinedExc&) Unexecuted instantiation: Iex_3_3::EnotjoinedExc::operator=(Iex_3_3::EnotjoinedExc&) Unexecuted instantiation: Iex_3_3::EnoprocExc::operator=(Iex_3_3::EnoprocExc&) Unexecuted instantiation: Iex_3_3::EmustrunExc::operator=(Iex_3_3::EmustrunExc&) Unexecuted instantiation: Iex_3_3::EnotstoppedExc::operator=(Iex_3_3::EnotstoppedExc&) Unexecuted instantiation: Iex_3_3::EclockcpuExc::operator=(Iex_3_3::EclockcpuExc&) Unexecuted instantiation: Iex_3_3::EinvalstateExc::operator=(Iex_3_3::EinvalstateExc&) Unexecuted instantiation: Iex_3_3::EnoexistExc::operator=(Iex_3_3::EnoexistExc&) Unexecuted instantiation: Iex_3_3::EendofminorExc::operator=(Iex_3_3::EendofminorExc&) Unexecuted instantiation: Iex_3_3::EbufsizeExc::operator=(Iex_3_3::EbufsizeExc&) Unexecuted instantiation: Iex_3_3::EemptyExc::operator=(Iex_3_3::EemptyExc&) Unexecuted instantiation: Iex_3_3::EnointrgroupExc::operator=(Iex_3_3::EnointrgroupExc&) Unexecuted instantiation: Iex_3_3::EinvalmodeExc::operator=(Iex_3_3::EinvalmodeExc&) Unexecuted instantiation: Iex_3_3::EcantextentExc::operator=(Iex_3_3::EcantextentExc&) Unexecuted instantiation: Iex_3_3::EinvaltimeExc::operator=(Iex_3_3::EinvaltimeExc&) Unexecuted instantiation: Iex_3_3::EdestroyedExc::operator=(Iex_3_3::EdestroyedExc&) Unexecuted instantiation: Iex_3_3::OverflowExc::operator=(Iex_3_3::OverflowExc&) Unexecuted instantiation: Iex_3_3::UnderflowExc::operator=(Iex_3_3::UnderflowExc&) Unexecuted instantiation: Iex_3_3::DivzeroExc::operator=(Iex_3_3::DivzeroExc&) Unexecuted instantiation: Iex_3_3::InexactExc::operator=(Iex_3_3::InexactExc&) Unexecuted instantiation: Iex_3_3::InvalidFpOpExc::operator=(Iex_3_3::InvalidFpOpExc&) |
136 | | exp name& name::operator= (name&& other) noexcept \ |
137 | 0 | { \ |
138 | 0 | base::operator= (other); \ |
139 | 0 | return *this; \ |
140 | 0 | } \ Unexecuted instantiation: Iex_3_3::ArgExc::operator=(Iex_3_3::ArgExc&&) Unexecuted instantiation: Iex_3_3::LogicExc::operator=(Iex_3_3::LogicExc&&) Unexecuted instantiation: Iex_3_3::InputExc::operator=(Iex_3_3::InputExc&&) Unexecuted instantiation: Iex_3_3::IoExc::operator=(Iex_3_3::IoExc&&) Unexecuted instantiation: Iex_3_3::MathExc::operator=(Iex_3_3::MathExc&&) Unexecuted instantiation: Iex_3_3::ErrnoExc::operator=(Iex_3_3::ErrnoExc&&) Unexecuted instantiation: Iex_3_3::NoImplExc::operator=(Iex_3_3::NoImplExc&&) Unexecuted instantiation: Iex_3_3::NullExc::operator=(Iex_3_3::NullExc&&) Unexecuted instantiation: Iex_3_3::TypeExc::operator=(Iex_3_3::TypeExc&&) Unexecuted instantiation: Iex_3_3::EpermExc::operator=(Iex_3_3::EpermExc&&) Unexecuted instantiation: Iex_3_3::EnoentExc::operator=(Iex_3_3::EnoentExc&&) Unexecuted instantiation: Iex_3_3::EsrchExc::operator=(Iex_3_3::EsrchExc&&) Unexecuted instantiation: Iex_3_3::EintrExc::operator=(Iex_3_3::EintrExc&&) Unexecuted instantiation: Iex_3_3::EioExc::operator=(Iex_3_3::EioExc&&) Unexecuted instantiation: Iex_3_3::EnxioExc::operator=(Iex_3_3::EnxioExc&&) Unexecuted instantiation: Iex_3_3::E2bigExc::operator=(Iex_3_3::E2bigExc&&) Unexecuted instantiation: Iex_3_3::EnoexecExc::operator=(Iex_3_3::EnoexecExc&&) Unexecuted instantiation: Iex_3_3::EbadfExc::operator=(Iex_3_3::EbadfExc&&) Unexecuted instantiation: Iex_3_3::EchildExc::operator=(Iex_3_3::EchildExc&&) Unexecuted instantiation: Iex_3_3::EagainExc::operator=(Iex_3_3::EagainExc&&) Unexecuted instantiation: Iex_3_3::EnomemExc::operator=(Iex_3_3::EnomemExc&&) Unexecuted instantiation: Iex_3_3::EaccesExc::operator=(Iex_3_3::EaccesExc&&) Unexecuted instantiation: Iex_3_3::EfaultExc::operator=(Iex_3_3::EfaultExc&&) Unexecuted instantiation: Iex_3_3::EnotblkExc::operator=(Iex_3_3::EnotblkExc&&) Unexecuted instantiation: Iex_3_3::EbusyExc::operator=(Iex_3_3::EbusyExc&&) Unexecuted instantiation: Iex_3_3::EexistExc::operator=(Iex_3_3::EexistExc&&) Unexecuted instantiation: Iex_3_3::ExdevExc::operator=(Iex_3_3::ExdevExc&&) Unexecuted instantiation: Iex_3_3::EnodevExc::operator=(Iex_3_3::EnodevExc&&) Unexecuted instantiation: Iex_3_3::EnotdirExc::operator=(Iex_3_3::EnotdirExc&&) Unexecuted instantiation: Iex_3_3::EisdirExc::operator=(Iex_3_3::EisdirExc&&) Unexecuted instantiation: Iex_3_3::EinvalExc::operator=(Iex_3_3::EinvalExc&&) Unexecuted instantiation: Iex_3_3::EnfileExc::operator=(Iex_3_3::EnfileExc&&) Unexecuted instantiation: Iex_3_3::EmfileExc::operator=(Iex_3_3::EmfileExc&&) Unexecuted instantiation: Iex_3_3::EnottyExc::operator=(Iex_3_3::EnottyExc&&) Unexecuted instantiation: Iex_3_3::EtxtbsyExc::operator=(Iex_3_3::EtxtbsyExc&&) Unexecuted instantiation: Iex_3_3::EfbigExc::operator=(Iex_3_3::EfbigExc&&) Unexecuted instantiation: Iex_3_3::EnospcExc::operator=(Iex_3_3::EnospcExc&&) Unexecuted instantiation: Iex_3_3::EspipeExc::operator=(Iex_3_3::EspipeExc&&) Unexecuted instantiation: Iex_3_3::ErofsExc::operator=(Iex_3_3::ErofsExc&&) Unexecuted instantiation: Iex_3_3::EmlinkExc::operator=(Iex_3_3::EmlinkExc&&) Unexecuted instantiation: Iex_3_3::EpipeExc::operator=(Iex_3_3::EpipeExc&&) Unexecuted instantiation: Iex_3_3::EdomExc::operator=(Iex_3_3::EdomExc&&) Unexecuted instantiation: Iex_3_3::ErangeExc::operator=(Iex_3_3::ErangeExc&&) Unexecuted instantiation: Iex_3_3::EnomsgExc::operator=(Iex_3_3::EnomsgExc&&) Unexecuted instantiation: Iex_3_3::EidrmExc::operator=(Iex_3_3::EidrmExc&&) Unexecuted instantiation: Iex_3_3::EchrngExc::operator=(Iex_3_3::EchrngExc&&) Unexecuted instantiation: Iex_3_3::El2nsyncExc::operator=(Iex_3_3::El2nsyncExc&&) Unexecuted instantiation: Iex_3_3::El3hltExc::operator=(Iex_3_3::El3hltExc&&) Unexecuted instantiation: Iex_3_3::El3rstExc::operator=(Iex_3_3::El3rstExc&&) Unexecuted instantiation: Iex_3_3::ElnrngExc::operator=(Iex_3_3::ElnrngExc&&) Unexecuted instantiation: Iex_3_3::EunatchExc::operator=(Iex_3_3::EunatchExc&&) Unexecuted instantiation: Iex_3_3::EnocsiExc::operator=(Iex_3_3::EnocsiExc&&) Unexecuted instantiation: Iex_3_3::El2hltExc::operator=(Iex_3_3::El2hltExc&&) Unexecuted instantiation: Iex_3_3::EdeadlkExc::operator=(Iex_3_3::EdeadlkExc&&) Unexecuted instantiation: Iex_3_3::EnolckExc::operator=(Iex_3_3::EnolckExc&&) Unexecuted instantiation: Iex_3_3::EbadeExc::operator=(Iex_3_3::EbadeExc&&) Unexecuted instantiation: Iex_3_3::EbadrExc::operator=(Iex_3_3::EbadrExc&&) Unexecuted instantiation: Iex_3_3::ExfullExc::operator=(Iex_3_3::ExfullExc&&) Unexecuted instantiation: Iex_3_3::EnoanoExc::operator=(Iex_3_3::EnoanoExc&&) Unexecuted instantiation: Iex_3_3::EbadrqcExc::operator=(Iex_3_3::EbadrqcExc&&) Unexecuted instantiation: Iex_3_3::EbadsltExc::operator=(Iex_3_3::EbadsltExc&&) Unexecuted instantiation: Iex_3_3::EdeadlockExc::operator=(Iex_3_3::EdeadlockExc&&) Unexecuted instantiation: Iex_3_3::EbfontExc::operator=(Iex_3_3::EbfontExc&&) Unexecuted instantiation: Iex_3_3::EnostrExc::operator=(Iex_3_3::EnostrExc&&) Unexecuted instantiation: Iex_3_3::EnodataExc::operator=(Iex_3_3::EnodataExc&&) Unexecuted instantiation: Iex_3_3::EtimeExc::operator=(Iex_3_3::EtimeExc&&) Unexecuted instantiation: Iex_3_3::EnosrExc::operator=(Iex_3_3::EnosrExc&&) Unexecuted instantiation: Iex_3_3::EnonetExc::operator=(Iex_3_3::EnonetExc&&) Unexecuted instantiation: Iex_3_3::EnopkgExc::operator=(Iex_3_3::EnopkgExc&&) Unexecuted instantiation: Iex_3_3::EremoteExc::operator=(Iex_3_3::EremoteExc&&) Unexecuted instantiation: Iex_3_3::EnolinkExc::operator=(Iex_3_3::EnolinkExc&&) Unexecuted instantiation: Iex_3_3::EadvExc::operator=(Iex_3_3::EadvExc&&) Unexecuted instantiation: Iex_3_3::EsrmntExc::operator=(Iex_3_3::EsrmntExc&&) Unexecuted instantiation: Iex_3_3::EcommExc::operator=(Iex_3_3::EcommExc&&) Unexecuted instantiation: Iex_3_3::EprotoExc::operator=(Iex_3_3::EprotoExc&&) Unexecuted instantiation: Iex_3_3::EmultihopExc::operator=(Iex_3_3::EmultihopExc&&) Unexecuted instantiation: Iex_3_3::EbadmsgExc::operator=(Iex_3_3::EbadmsgExc&&) Unexecuted instantiation: Iex_3_3::EnametoolongExc::operator=(Iex_3_3::EnametoolongExc&&) Unexecuted instantiation: Iex_3_3::EoverflowExc::operator=(Iex_3_3::EoverflowExc&&) Unexecuted instantiation: Iex_3_3::EnotuniqExc::operator=(Iex_3_3::EnotuniqExc&&) Unexecuted instantiation: Iex_3_3::EbadfdExc::operator=(Iex_3_3::EbadfdExc&&) Unexecuted instantiation: Iex_3_3::EremchgExc::operator=(Iex_3_3::EremchgExc&&) Unexecuted instantiation: Iex_3_3::ElibaccExc::operator=(Iex_3_3::ElibaccExc&&) Unexecuted instantiation: Iex_3_3::ElibbadExc::operator=(Iex_3_3::ElibbadExc&&) Unexecuted instantiation: Iex_3_3::ElibscnExc::operator=(Iex_3_3::ElibscnExc&&) Unexecuted instantiation: Iex_3_3::ElibmaxExc::operator=(Iex_3_3::ElibmaxExc&&) Unexecuted instantiation: Iex_3_3::ElibexecExc::operator=(Iex_3_3::ElibexecExc&&) Unexecuted instantiation: Iex_3_3::EilseqExc::operator=(Iex_3_3::EilseqExc&&) Unexecuted instantiation: Iex_3_3::EnosysExc::operator=(Iex_3_3::EnosysExc&&) Unexecuted instantiation: Iex_3_3::EloopExc::operator=(Iex_3_3::EloopExc&&) Unexecuted instantiation: Iex_3_3::ErestartExc::operator=(Iex_3_3::ErestartExc&&) Unexecuted instantiation: Iex_3_3::EstrpipeExc::operator=(Iex_3_3::EstrpipeExc&&) Unexecuted instantiation: Iex_3_3::EnotemptyExc::operator=(Iex_3_3::EnotemptyExc&&) Unexecuted instantiation: Iex_3_3::EusersExc::operator=(Iex_3_3::EusersExc&&) Unexecuted instantiation: Iex_3_3::EnotsockExc::operator=(Iex_3_3::EnotsockExc&&) Unexecuted instantiation: Iex_3_3::EdestaddrreqExc::operator=(Iex_3_3::EdestaddrreqExc&&) Unexecuted instantiation: Iex_3_3::EmsgsizeExc::operator=(Iex_3_3::EmsgsizeExc&&) Unexecuted instantiation: Iex_3_3::EprototypeExc::operator=(Iex_3_3::EprototypeExc&&) Unexecuted instantiation: Iex_3_3::EnoprotooptExc::operator=(Iex_3_3::EnoprotooptExc&&) Unexecuted instantiation: Iex_3_3::EprotonosupportExc::operator=(Iex_3_3::EprotonosupportExc&&) Unexecuted instantiation: Iex_3_3::EsocktnosupportExc::operator=(Iex_3_3::EsocktnosupportExc&&) Unexecuted instantiation: Iex_3_3::EopnotsuppExc::operator=(Iex_3_3::EopnotsuppExc&&) Unexecuted instantiation: Iex_3_3::EpfnosupportExc::operator=(Iex_3_3::EpfnosupportExc&&) Unexecuted instantiation: Iex_3_3::EafnosupportExc::operator=(Iex_3_3::EafnosupportExc&&) Unexecuted instantiation: Iex_3_3::EaddrinuseExc::operator=(Iex_3_3::EaddrinuseExc&&) Unexecuted instantiation: Iex_3_3::EaddrnotavailExc::operator=(Iex_3_3::EaddrnotavailExc&&) Unexecuted instantiation: Iex_3_3::EnetdownExc::operator=(Iex_3_3::EnetdownExc&&) Unexecuted instantiation: Iex_3_3::EnetunreachExc::operator=(Iex_3_3::EnetunreachExc&&) Unexecuted instantiation: Iex_3_3::EnetresetExc::operator=(Iex_3_3::EnetresetExc&&) Unexecuted instantiation: Iex_3_3::EconnabortedExc::operator=(Iex_3_3::EconnabortedExc&&) Unexecuted instantiation: Iex_3_3::EconnresetExc::operator=(Iex_3_3::EconnresetExc&&) Unexecuted instantiation: Iex_3_3::EnobufsExc::operator=(Iex_3_3::EnobufsExc&&) Unexecuted instantiation: Iex_3_3::EisconnExc::operator=(Iex_3_3::EisconnExc&&) Unexecuted instantiation: Iex_3_3::EnotconnExc::operator=(Iex_3_3::EnotconnExc&&) Unexecuted instantiation: Iex_3_3::EshutdownExc::operator=(Iex_3_3::EshutdownExc&&) Unexecuted instantiation: Iex_3_3::EtoomanyrefsExc::operator=(Iex_3_3::EtoomanyrefsExc&&) Unexecuted instantiation: Iex_3_3::EtimedoutExc::operator=(Iex_3_3::EtimedoutExc&&) Unexecuted instantiation: Iex_3_3::EconnrefusedExc::operator=(Iex_3_3::EconnrefusedExc&&) Unexecuted instantiation: Iex_3_3::EhostdownExc::operator=(Iex_3_3::EhostdownExc&&) Unexecuted instantiation: Iex_3_3::EhostunreachExc::operator=(Iex_3_3::EhostunreachExc&&) Unexecuted instantiation: Iex_3_3::EalreadyExc::operator=(Iex_3_3::EalreadyExc&&) Unexecuted instantiation: Iex_3_3::EinprogressExc::operator=(Iex_3_3::EinprogressExc&&) Unexecuted instantiation: Iex_3_3::EstaleExc::operator=(Iex_3_3::EstaleExc&&) Unexecuted instantiation: Iex_3_3::EioresidExc::operator=(Iex_3_3::EioresidExc&&) Unexecuted instantiation: Iex_3_3::EucleanExc::operator=(Iex_3_3::EucleanExc&&) Unexecuted instantiation: Iex_3_3::EnotnamExc::operator=(Iex_3_3::EnotnamExc&&) Unexecuted instantiation: Iex_3_3::EnavailExc::operator=(Iex_3_3::EnavailExc&&) Unexecuted instantiation: Iex_3_3::EisnamExc::operator=(Iex_3_3::EisnamExc&&) Unexecuted instantiation: Iex_3_3::EremoteioExc::operator=(Iex_3_3::EremoteioExc&&) Unexecuted instantiation: Iex_3_3::EinitExc::operator=(Iex_3_3::EinitExc&&) Unexecuted instantiation: Iex_3_3::EremdevExc::operator=(Iex_3_3::EremdevExc&&) Unexecuted instantiation: Iex_3_3::EcanceledExc::operator=(Iex_3_3::EcanceledExc&&) Unexecuted instantiation: Iex_3_3::EnolimfileExc::operator=(Iex_3_3::EnolimfileExc&&) Unexecuted instantiation: Iex_3_3::EproclimExc::operator=(Iex_3_3::EproclimExc&&) Unexecuted instantiation: Iex_3_3::EdisjointExc::operator=(Iex_3_3::EdisjointExc&&) Unexecuted instantiation: Iex_3_3::EnologinExc::operator=(Iex_3_3::EnologinExc&&) Unexecuted instantiation: Iex_3_3::EloginlimExc::operator=(Iex_3_3::EloginlimExc&&) Unexecuted instantiation: Iex_3_3::EgrouploopExc::operator=(Iex_3_3::EgrouploopExc&&) Unexecuted instantiation: Iex_3_3::EnoattachExc::operator=(Iex_3_3::EnoattachExc&&) Unexecuted instantiation: Iex_3_3::EnotsupExc::operator=(Iex_3_3::EnotsupExc&&) Unexecuted instantiation: Iex_3_3::EnoattrExc::operator=(Iex_3_3::EnoattrExc&&) Unexecuted instantiation: Iex_3_3::EdircorruptedExc::operator=(Iex_3_3::EdircorruptedExc&&) Unexecuted instantiation: Iex_3_3::EdquotExc::operator=(Iex_3_3::EdquotExc&&) Unexecuted instantiation: Iex_3_3::EnfsremoteExc::operator=(Iex_3_3::EnfsremoteExc&&) Unexecuted instantiation: Iex_3_3::EcontrollerExc::operator=(Iex_3_3::EcontrollerExc&&) Unexecuted instantiation: Iex_3_3::EnotcontrollerExc::operator=(Iex_3_3::EnotcontrollerExc&&) Unexecuted instantiation: Iex_3_3::EenqueuedExc::operator=(Iex_3_3::EenqueuedExc&&) Unexecuted instantiation: Iex_3_3::EnotenqueuedExc::operator=(Iex_3_3::EnotenqueuedExc&&) Unexecuted instantiation: Iex_3_3::EjoinedExc::operator=(Iex_3_3::EjoinedExc&&) Unexecuted instantiation: Iex_3_3::EnotjoinedExc::operator=(Iex_3_3::EnotjoinedExc&&) Unexecuted instantiation: Iex_3_3::EnoprocExc::operator=(Iex_3_3::EnoprocExc&&) Unexecuted instantiation: Iex_3_3::EmustrunExc::operator=(Iex_3_3::EmustrunExc&&) Unexecuted instantiation: Iex_3_3::EnotstoppedExc::operator=(Iex_3_3::EnotstoppedExc&&) Unexecuted instantiation: Iex_3_3::EclockcpuExc::operator=(Iex_3_3::EclockcpuExc&&) Unexecuted instantiation: Iex_3_3::EinvalstateExc::operator=(Iex_3_3::EinvalstateExc&&) Unexecuted instantiation: Iex_3_3::EnoexistExc::operator=(Iex_3_3::EnoexistExc&&) Unexecuted instantiation: Iex_3_3::EendofminorExc::operator=(Iex_3_3::EendofminorExc&&) Unexecuted instantiation: Iex_3_3::EbufsizeExc::operator=(Iex_3_3::EbufsizeExc&&) Unexecuted instantiation: Iex_3_3::EemptyExc::operator=(Iex_3_3::EemptyExc&&) Unexecuted instantiation: Iex_3_3::EnointrgroupExc::operator=(Iex_3_3::EnointrgroupExc&&) Unexecuted instantiation: Iex_3_3::EinvalmodeExc::operator=(Iex_3_3::EinvalmodeExc&&) Unexecuted instantiation: Iex_3_3::EcantextentExc::operator=(Iex_3_3::EcantextentExc&&) Unexecuted instantiation: Iex_3_3::EinvaltimeExc::operator=(Iex_3_3::EinvaltimeExc&&) Unexecuted instantiation: Iex_3_3::EdestroyedExc::operator=(Iex_3_3::EdestroyedExc&&) Unexecuted instantiation: Iex_3_3::OverflowExc::operator=(Iex_3_3::OverflowExc&&) Unexecuted instantiation: Iex_3_3::UnderflowExc::operator=(Iex_3_3::UnderflowExc&&) Unexecuted instantiation: Iex_3_3::DivzeroExc::operator=(Iex_3_3::DivzeroExc&&) Unexecuted instantiation: Iex_3_3::InexactExc::operator=(Iex_3_3::InexactExc&&) Unexecuted instantiation: Iex_3_3::InvalidFpOpExc::operator=(Iex_3_3::InvalidFpOpExc&&) |
141 | | exp name::~name () noexcept \ |
142 | | {} |
143 | | |
144 | | // For backward compatibility. |
145 | | #define DEFINE_EXC(name, base) DEFINE_EXC_EXP (, name, base) |
146 | | |
147 | | //-------------------------------------------------------- |
148 | | // Some exceptions which should be useful in most programs |
149 | | //-------------------------------------------------------- |
150 | | DEFINE_EXC_EXP ( |
151 | | IEX_EXPORT, ArgExc, BaseExc) // Invalid arguments to a function call |
152 | | |
153 | | DEFINE_EXC_EXP ( |
154 | | IEX_EXPORT, LogicExc, BaseExc) // General error in a program's logic, |
155 | | // for example, a function was called |
156 | | // in a context where the call does |
157 | | // not make sense. |
158 | | |
159 | | DEFINE_EXC_EXP ( |
160 | | IEX_EXPORT, InputExc, BaseExc) // Invalid input data, e.g. from a file |
161 | | |
162 | | DEFINE_EXC_EXP (IEX_EXPORT, IoExc, BaseExc) // Input or output operation failed |
163 | | |
164 | | DEFINE_EXC_EXP ( |
165 | | IEX_EXPORT, MathExc, BaseExc) // Arithmetic exception; more specific |
166 | | // exceptions derived from this class |
167 | | // are defined in ExcMath.h |
168 | | |
169 | | DEFINE_EXC_EXP ( |
170 | | IEX_EXPORT, ErrnoExc, BaseExc) // Base class for exceptions corresponding |
171 | | // to errno values (see errno.h); more |
172 | | // specific exceptions derived from this |
173 | | // class are defined in ExcErrno.h |
174 | | |
175 | | DEFINE_EXC_EXP ( |
176 | | IEX_EXPORT, NoImplExc, BaseExc) // Missing method exception e.g. from a |
177 | | // call to a method that is only partially |
178 | | // or not at all implemented. A reminder |
179 | | // to lazy software people to get back |
180 | | // to work. |
181 | | |
182 | | DEFINE_EXC_EXP ( |
183 | | IEX_EXPORT, NullExc, BaseExc) // A pointer is inappropriately null. |
184 | | |
185 | | DEFINE_EXC_EXP ( |
186 | | IEX_EXPORT, TypeExc, BaseExc) // An object is an inappropriate type, |
187 | | // i.e. a dynamnic_cast failed. |
188 | | |
189 | | //---------------------------------------------------------------------- |
190 | | // Stack-tracing support: |
191 | | // |
192 | | // setStackTracer(st) |
193 | | // |
194 | | // installs a stack-tracing routine, st, which will be called from |
195 | | // class BaseExc's constructor every time an exception derived from |
196 | | // BaseExc is thrown. The stack-tracing routine should return a |
197 | | // string that contains a printable representation of the program's |
198 | | // current call stack. This string will be stored in the BaseExc |
199 | | // object; the string is accessible via the BaseExc::stackTrace() |
200 | | // method. |
201 | | // |
202 | | // setStackTracer(0) |
203 | | // |
204 | | // removes the current stack tracing routine. When an exception |
205 | | // derived from BaseExc is thrown, the stack trace string stored |
206 | | // in the BaseExc object will be empty. |
207 | | // |
208 | | // stackTracer() |
209 | | // |
210 | | // returns a pointer to the current stack-tracing routine, or 0 |
211 | | // if there is no current stack stack-tracing routine. |
212 | | // |
213 | | //---------------------------------------------------------------------- |
214 | | |
215 | | typedef std::string (*StackTracer) (); |
216 | | |
217 | | IEX_EXPORT void setStackTracer (StackTracer stackTracer); |
218 | | IEX_EXPORT StackTracer stackTracer (); |
219 | | |
220 | | IEX_INTERNAL_NAMESPACE_HEADER_EXIT |
221 | | |
222 | | #endif // INCLUDED_IEXBASEEXC_H |