/src/openexr/IlmBase/Iex/IexBaseExc.h
Line | Count | Source (jump to first uncovered line) |
1 | | /////////////////////////////////////////////////////////////////////////// |
2 | | // |
3 | | // Copyright (c) 2002-2012, Industrial Light & Magic, a division of Lucas |
4 | | // Digital Ltd. LLC |
5 | | // |
6 | | // All rights reserved. |
7 | | // |
8 | | // Redistribution and use in source and binary forms, with or without |
9 | | // modification, are permitted provided that the following conditions are |
10 | | // met: |
11 | | // * Redistributions of source code must retain the above copyright |
12 | | // notice, this list of conditions and the following disclaimer. |
13 | | // * Redistributions in binary form must reproduce the above |
14 | | // copyright notice, this list of conditions and the following disclaimer |
15 | | // in the documentation and/or other materials provided with the |
16 | | // distribution. |
17 | | // * Neither the name of Industrial Light & Magic nor the names of |
18 | | // its contributors may be used to endorse or promote products derived |
19 | | // from this software without specific prior written permission. |
20 | | // |
21 | | // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
22 | | // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
23 | | // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
24 | | // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
25 | | // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
26 | | // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
27 | | // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
28 | | // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
29 | | // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
30 | | // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
31 | | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
32 | | // |
33 | | /////////////////////////////////////////////////////////////////////////// |
34 | | |
35 | | |
36 | | #ifndef INCLUDED_IEXBASEEXC_H |
37 | | #define INCLUDED_IEXBASEEXC_H |
38 | | |
39 | | #include "IexNamespace.h" |
40 | | #include "IexExport.h" |
41 | | |
42 | | //---------------------------------------------------------- |
43 | | // |
44 | | // A general exception base class, and a few |
45 | | // useful exceptions derived from the base class. |
46 | | // |
47 | | //---------------------------------------------------------- |
48 | | |
49 | | #include <string> |
50 | | #include <exception> |
51 | | #include <sstream> |
52 | | |
53 | | IEX_INTERNAL_NAMESPACE_HEADER_ENTER |
54 | | |
55 | | |
56 | | //------------------------------- |
57 | | // Our most basic exception class |
58 | | //------------------------------- |
59 | | |
60 | | class BaseExc: public std::exception |
61 | | { |
62 | | public: |
63 | | |
64 | | //---------------------------- |
65 | | // Constructors and destructor |
66 | | //---------------------------- |
67 | | |
68 | | IEX_EXPORT BaseExc (const char *s = nullptr) throw(); // std::string (s) |
69 | | IEX_EXPORT BaseExc (const std::string &s) throw(); // std::string (s) |
70 | | IEX_EXPORT BaseExc (std::stringstream &s) throw(); // std::string (s.str()) |
71 | | |
72 | | IEX_EXPORT BaseExc (const BaseExc &be) throw(); |
73 | | IEX_EXPORT BaseExc (BaseExc &&be) throw(); |
74 | | IEX_EXPORT virtual ~BaseExc () throw (); |
75 | | |
76 | | IEX_EXPORT BaseExc & operator = (const BaseExc& be) throw (); |
77 | | IEX_EXPORT BaseExc & operator = (BaseExc&& be) throw (); |
78 | | |
79 | | //--------------------------------------------------- |
80 | | // what() method -- e.what() returns _message.c_str() |
81 | | //--------------------------------------------------- |
82 | | |
83 | | IEX_EXPORT virtual const char * what () const throw (); |
84 | | |
85 | | |
86 | | //-------------------------------------------------- |
87 | | // Convenient methods to change the exception's text |
88 | | //-------------------------------------------------- |
89 | | |
90 | | IEX_EXPORT BaseExc & assign (std::stringstream &s); // assign (s.str()) |
91 | | IEX_EXPORT BaseExc & operator = (std::stringstream &s); |
92 | | |
93 | | IEX_EXPORT BaseExc & append (std::stringstream &s); // append (s.str()) |
94 | | IEX_EXPORT BaseExc & operator += (std::stringstream &s); |
95 | | |
96 | | |
97 | | //-------------------------------------------------- |
98 | | // These methods from the base class get obscured by |
99 | | // the definitions above. |
100 | | //-------------------------------------------------- |
101 | | |
102 | | IEX_EXPORT BaseExc & assign (const char *s); |
103 | | IEX_EXPORT BaseExc & operator = (const char *s); |
104 | | |
105 | | IEX_EXPORT BaseExc & append (const char *s); |
106 | | IEX_EXPORT BaseExc & operator += (const char *s); |
107 | | |
108 | | //--------------------------------------------------- |
109 | | // Access to the string representation of the message |
110 | | //--------------------------------------------------- |
111 | | |
112 | | IEX_EXPORT const std::string & message () const; |
113 | | |
114 | | //-------------------------------------------------- |
115 | | // Stack trace for the point at which the exception |
116 | | // was thrown. The stack trace will be an empty |
117 | | // string unless a working stack-tracing routine |
118 | | // has been installed (see below, setStackTracer()). |
119 | | //-------------------------------------------------- |
120 | | |
121 | | IEX_EXPORT const std::string & stackTrace () const; |
122 | | |
123 | | private: |
124 | | |
125 | | std::string _message; |
126 | | std::string _stackTrace; |
127 | | }; |
128 | | |
129 | | |
130 | | //----------------------------------------------------- |
131 | | // A macro to save typing when declararing an exception |
132 | | // class derived directly or indirectly from BaseExc: |
133 | | //----------------------------------------------------- |
134 | | |
135 | | #define DEFINE_EXC_EXP(exp, name, base) \ |
136 | | class name: public base \ |
137 | | { \ |
138 | | public: \ |
139 | | exp name() throw(); \ |
140 | | exp name (const char* text) throw(); \ |
141 | | exp name (const std::string &text) throw(); \ |
142 | | exp name (std::stringstream &text) throw(); \ |
143 | | exp name (const name &other) throw(); \ |
144 | | exp name (name &&other) throw(); \ |
145 | | exp name& operator = (name &other) throw(); \ |
146 | | exp name& operator = (name &&other) throw(); \ |
147 | | exp ~name() throw(); \ |
148 | | }; |
149 | | |
150 | | #define DEFINE_EXC_EXP_IMPL(exp, name, base) \ |
151 | 0 | exp name::name () throw () : base () {} \ Unexecuted instantiation: Imath_2_5::NullVecExc::NullVecExc() Unexecuted instantiation: Imath_2_5::InfPointExc::InfPointExc() Unexecuted instantiation: Imath_2_5::NullQuatExc::NullQuatExc() Unexecuted instantiation: Imath_2_5::SingMatrixExc::SingMatrixExc() Unexecuted instantiation: Imath_2_5::ZeroScaleExc::ZeroScaleExc() Unexecuted instantiation: Imath_2_5::IntVecNormalizeExc::IntVecNormalizeExc() Unexecuted instantiation: Iex_2_5::ArgExc::ArgExc() Unexecuted instantiation: Iex_2_5::LogicExc::LogicExc() Unexecuted instantiation: Iex_2_5::InputExc::InputExc() Unexecuted instantiation: Iex_2_5::IoExc::IoExc() Unexecuted instantiation: Iex_2_5::MathExc::MathExc() Unexecuted instantiation: Iex_2_5::ErrnoExc::ErrnoExc() Unexecuted instantiation: Iex_2_5::NoImplExc::NoImplExc() Unexecuted instantiation: Iex_2_5::NullExc::NullExc() Unexecuted instantiation: Iex_2_5::TypeExc::TypeExc() Unexecuted instantiation: Iex_2_5::EpermExc::EpermExc() Unexecuted instantiation: Iex_2_5::EnoentExc::EnoentExc() Unexecuted instantiation: Iex_2_5::EsrchExc::EsrchExc() Unexecuted instantiation: Iex_2_5::EintrExc::EintrExc() Unexecuted instantiation: Iex_2_5::EioExc::EioExc() Unexecuted instantiation: Iex_2_5::EnxioExc::EnxioExc() Unexecuted instantiation: Iex_2_5::E2bigExc::E2bigExc() Unexecuted instantiation: Iex_2_5::EnoexecExc::EnoexecExc() Unexecuted instantiation: Iex_2_5::EbadfExc::EbadfExc() Unexecuted instantiation: Iex_2_5::EchildExc::EchildExc() Unexecuted instantiation: Iex_2_5::EagainExc::EagainExc() Unexecuted instantiation: Iex_2_5::EnomemExc::EnomemExc() Unexecuted instantiation: Iex_2_5::EaccesExc::EaccesExc() Unexecuted instantiation: Iex_2_5::EfaultExc::EfaultExc() Unexecuted instantiation: Iex_2_5::EnotblkExc::EnotblkExc() Unexecuted instantiation: Iex_2_5::EbusyExc::EbusyExc() Unexecuted instantiation: Iex_2_5::EexistExc::EexistExc() Unexecuted instantiation: Iex_2_5::ExdevExc::ExdevExc() Unexecuted instantiation: Iex_2_5::EnodevExc::EnodevExc() Unexecuted instantiation: Iex_2_5::EnotdirExc::EnotdirExc() Unexecuted instantiation: Iex_2_5::EisdirExc::EisdirExc() Unexecuted instantiation: Iex_2_5::EinvalExc::EinvalExc() Unexecuted instantiation: Iex_2_5::EnfileExc::EnfileExc() Unexecuted instantiation: Iex_2_5::EmfileExc::EmfileExc() Unexecuted instantiation: Iex_2_5::EnottyExc::EnottyExc() Unexecuted instantiation: Iex_2_5::EtxtbsyExc::EtxtbsyExc() Unexecuted instantiation: Iex_2_5::EfbigExc::EfbigExc() Unexecuted instantiation: Iex_2_5::EnospcExc::EnospcExc() Unexecuted instantiation: Iex_2_5::EspipeExc::EspipeExc() Unexecuted instantiation: Iex_2_5::ErofsExc::ErofsExc() Unexecuted instantiation: Iex_2_5::EmlinkExc::EmlinkExc() Unexecuted instantiation: Iex_2_5::EpipeExc::EpipeExc() Unexecuted instantiation: Iex_2_5::EdomExc::EdomExc() Unexecuted instantiation: Iex_2_5::ErangeExc::ErangeExc() Unexecuted instantiation: Iex_2_5::EnomsgExc::EnomsgExc() Unexecuted instantiation: Iex_2_5::EidrmExc::EidrmExc() Unexecuted instantiation: Iex_2_5::EchrngExc::EchrngExc() Unexecuted instantiation: Iex_2_5::El2nsyncExc::El2nsyncExc() Unexecuted instantiation: Iex_2_5::El3hltExc::El3hltExc() Unexecuted instantiation: Iex_2_5::El3rstExc::El3rstExc() Unexecuted instantiation: Iex_2_5::ElnrngExc::ElnrngExc() Unexecuted instantiation: Iex_2_5::EunatchExc::EunatchExc() Unexecuted instantiation: Iex_2_5::EnocsiExc::EnocsiExc() Unexecuted instantiation: Iex_2_5::El2hltExc::El2hltExc() Unexecuted instantiation: Iex_2_5::EdeadlkExc::EdeadlkExc() Unexecuted instantiation: Iex_2_5::EnolckExc::EnolckExc() Unexecuted instantiation: Iex_2_5::EbadeExc::EbadeExc() Unexecuted instantiation: Iex_2_5::EbadrExc::EbadrExc() Unexecuted instantiation: Iex_2_5::ExfullExc::ExfullExc() Unexecuted instantiation: Iex_2_5::EnoanoExc::EnoanoExc() Unexecuted instantiation: Iex_2_5::EbadrqcExc::EbadrqcExc() Unexecuted instantiation: Iex_2_5::EbadsltExc::EbadsltExc() Unexecuted instantiation: Iex_2_5::EdeadlockExc::EdeadlockExc() Unexecuted instantiation: Iex_2_5::EbfontExc::EbfontExc() Unexecuted instantiation: Iex_2_5::EnostrExc::EnostrExc() Unexecuted instantiation: Iex_2_5::EnodataExc::EnodataExc() Unexecuted instantiation: Iex_2_5::EtimeExc::EtimeExc() Unexecuted instantiation: Iex_2_5::EnosrExc::EnosrExc() Unexecuted instantiation: Iex_2_5::EnonetExc::EnonetExc() Unexecuted instantiation: Iex_2_5::EnopkgExc::EnopkgExc() Unexecuted instantiation: Iex_2_5::EremoteExc::EremoteExc() Unexecuted instantiation: Iex_2_5::EnolinkExc::EnolinkExc() Unexecuted instantiation: Iex_2_5::EadvExc::EadvExc() Unexecuted instantiation: Iex_2_5::EsrmntExc::EsrmntExc() Unexecuted instantiation: Iex_2_5::EcommExc::EcommExc() Unexecuted instantiation: Iex_2_5::EprotoExc::EprotoExc() Unexecuted instantiation: Iex_2_5::EmultihopExc::EmultihopExc() Unexecuted instantiation: Iex_2_5::EbadmsgExc::EbadmsgExc() Unexecuted instantiation: Iex_2_5::EnametoolongExc::EnametoolongExc() Unexecuted instantiation: Iex_2_5::EoverflowExc::EoverflowExc() Unexecuted instantiation: Iex_2_5::EnotuniqExc::EnotuniqExc() Unexecuted instantiation: Iex_2_5::EbadfdExc::EbadfdExc() Unexecuted instantiation: Iex_2_5::EremchgExc::EremchgExc() Unexecuted instantiation: Iex_2_5::ElibaccExc::ElibaccExc() Unexecuted instantiation: Iex_2_5::ElibbadExc::ElibbadExc() Unexecuted instantiation: Iex_2_5::ElibscnExc::ElibscnExc() Unexecuted instantiation: Iex_2_5::ElibmaxExc::ElibmaxExc() Unexecuted instantiation: Iex_2_5::ElibexecExc::ElibexecExc() Unexecuted instantiation: Iex_2_5::EilseqExc::EilseqExc() Unexecuted instantiation: Iex_2_5::EnosysExc::EnosysExc() Unexecuted instantiation: Iex_2_5::EloopExc::EloopExc() Unexecuted instantiation: Iex_2_5::ErestartExc::ErestartExc() Unexecuted instantiation: Iex_2_5::EstrpipeExc::EstrpipeExc() Unexecuted instantiation: Iex_2_5::EnotemptyExc::EnotemptyExc() Unexecuted instantiation: Iex_2_5::EusersExc::EusersExc() Unexecuted instantiation: Iex_2_5::EnotsockExc::EnotsockExc() Unexecuted instantiation: Iex_2_5::EdestaddrreqExc::EdestaddrreqExc() Unexecuted instantiation: Iex_2_5::EmsgsizeExc::EmsgsizeExc() Unexecuted instantiation: Iex_2_5::EprototypeExc::EprototypeExc() Unexecuted instantiation: Iex_2_5::EnoprotooptExc::EnoprotooptExc() Unexecuted instantiation: Iex_2_5::EprotonosupportExc::EprotonosupportExc() Unexecuted instantiation: Iex_2_5::EsocktnosupportExc::EsocktnosupportExc() Unexecuted instantiation: Iex_2_5::EopnotsuppExc::EopnotsuppExc() Unexecuted instantiation: Iex_2_5::EpfnosupportExc::EpfnosupportExc() Unexecuted instantiation: Iex_2_5::EafnosupportExc::EafnosupportExc() Unexecuted instantiation: Iex_2_5::EaddrinuseExc::EaddrinuseExc() Unexecuted instantiation: Iex_2_5::EaddrnotavailExc::EaddrnotavailExc() Unexecuted instantiation: Iex_2_5::EnetdownExc::EnetdownExc() Unexecuted instantiation: Iex_2_5::EnetunreachExc::EnetunreachExc() Unexecuted instantiation: Iex_2_5::EnetresetExc::EnetresetExc() Unexecuted instantiation: Iex_2_5::EconnabortedExc::EconnabortedExc() Unexecuted instantiation: Iex_2_5::EconnresetExc::EconnresetExc() Unexecuted instantiation: Iex_2_5::EnobufsExc::EnobufsExc() Unexecuted instantiation: Iex_2_5::EisconnExc::EisconnExc() Unexecuted instantiation: Iex_2_5::EnotconnExc::EnotconnExc() Unexecuted instantiation: Iex_2_5::EshutdownExc::EshutdownExc() Unexecuted instantiation: Iex_2_5::EtoomanyrefsExc::EtoomanyrefsExc() Unexecuted instantiation: Iex_2_5::EtimedoutExc::EtimedoutExc() Unexecuted instantiation: Iex_2_5::EconnrefusedExc::EconnrefusedExc() Unexecuted instantiation: Iex_2_5::EhostdownExc::EhostdownExc() Unexecuted instantiation: Iex_2_5::EhostunreachExc::EhostunreachExc() Unexecuted instantiation: Iex_2_5::EalreadyExc::EalreadyExc() Unexecuted instantiation: Iex_2_5::EinprogressExc::EinprogressExc() Unexecuted instantiation: Iex_2_5::EstaleExc::EstaleExc() Unexecuted instantiation: Iex_2_5::EioresidExc::EioresidExc() Unexecuted instantiation: Iex_2_5::EucleanExc::EucleanExc() Unexecuted instantiation: Iex_2_5::EnotnamExc::EnotnamExc() Unexecuted instantiation: Iex_2_5::EnavailExc::EnavailExc() Unexecuted instantiation: Iex_2_5::EisnamExc::EisnamExc() Unexecuted instantiation: Iex_2_5::EremoteioExc::EremoteioExc() Unexecuted instantiation: Iex_2_5::EinitExc::EinitExc() Unexecuted instantiation: Iex_2_5::EremdevExc::EremdevExc() Unexecuted instantiation: Iex_2_5::EcanceledExc::EcanceledExc() Unexecuted instantiation: Iex_2_5::EnolimfileExc::EnolimfileExc() Unexecuted instantiation: Iex_2_5::EproclimExc::EproclimExc() Unexecuted instantiation: Iex_2_5::EdisjointExc::EdisjointExc() Unexecuted instantiation: Iex_2_5::EnologinExc::EnologinExc() Unexecuted instantiation: Iex_2_5::EloginlimExc::EloginlimExc() Unexecuted instantiation: Iex_2_5::EgrouploopExc::EgrouploopExc() Unexecuted instantiation: Iex_2_5::EnoattachExc::EnoattachExc() Unexecuted instantiation: Iex_2_5::EnotsupExc::EnotsupExc() Unexecuted instantiation: Iex_2_5::EnoattrExc::EnoattrExc() Unexecuted instantiation: Iex_2_5::EdircorruptedExc::EdircorruptedExc() Unexecuted instantiation: Iex_2_5::EdquotExc::EdquotExc() Unexecuted instantiation: Iex_2_5::EnfsremoteExc::EnfsremoteExc() Unexecuted instantiation: Iex_2_5::EcontrollerExc::EcontrollerExc() Unexecuted instantiation: Iex_2_5::EnotcontrollerExc::EnotcontrollerExc() Unexecuted instantiation: Iex_2_5::EenqueuedExc::EenqueuedExc() Unexecuted instantiation: Iex_2_5::EnotenqueuedExc::EnotenqueuedExc() Unexecuted instantiation: Iex_2_5::EjoinedExc::EjoinedExc() Unexecuted instantiation: Iex_2_5::EnotjoinedExc::EnotjoinedExc() Unexecuted instantiation: Iex_2_5::EnoprocExc::EnoprocExc() Unexecuted instantiation: Iex_2_5::EmustrunExc::EmustrunExc() Unexecuted instantiation: Iex_2_5::EnotstoppedExc::EnotstoppedExc() Unexecuted instantiation: Iex_2_5::EclockcpuExc::EclockcpuExc() Unexecuted instantiation: Iex_2_5::EinvalstateExc::EinvalstateExc() Unexecuted instantiation: Iex_2_5::EnoexistExc::EnoexistExc() Unexecuted instantiation: Iex_2_5::EendofminorExc::EendofminorExc() Unexecuted instantiation: Iex_2_5::EbufsizeExc::EbufsizeExc() Unexecuted instantiation: Iex_2_5::EemptyExc::EemptyExc() Unexecuted instantiation: Iex_2_5::EnointrgroupExc::EnointrgroupExc() Unexecuted instantiation: Iex_2_5::EinvalmodeExc::EinvalmodeExc() Unexecuted instantiation: Iex_2_5::EcantextentExc::EcantextentExc() Unexecuted instantiation: Iex_2_5::EinvaltimeExc::EinvaltimeExc() Unexecuted instantiation: Iex_2_5::EdestroyedExc::EdestroyedExc() Unexecuted instantiation: Iex_2_5::OverflowExc::OverflowExc() Unexecuted instantiation: Iex_2_5::UnderflowExc::UnderflowExc() Unexecuted instantiation: Iex_2_5::DivzeroExc::DivzeroExc() Unexecuted instantiation: Iex_2_5::InexactExc::InexactExc() Unexecuted instantiation: Iex_2_5::InvalidFpOpExc::InvalidFpOpExc() |
152 | 0 | exp name::name (const char* text) throw () : base (text) {} \ Unexecuted instantiation: Imath_2_5::NullVecExc::NullVecExc(char const*) Unexecuted instantiation: Imath_2_5::InfPointExc::InfPointExc(char const*) Unexecuted instantiation: Imath_2_5::NullQuatExc::NullQuatExc(char const*) Unexecuted instantiation: Imath_2_5::SingMatrixExc::SingMatrixExc(char const*) Unexecuted instantiation: Imath_2_5::ZeroScaleExc::ZeroScaleExc(char const*) Unexecuted instantiation: Imath_2_5::IntVecNormalizeExc::IntVecNormalizeExc(char const*) Unexecuted instantiation: Iex_2_5::ArgExc::ArgExc(char const*) Unexecuted instantiation: Iex_2_5::LogicExc::LogicExc(char const*) Unexecuted instantiation: Iex_2_5::InputExc::InputExc(char const*) Unexecuted instantiation: Iex_2_5::IoExc::IoExc(char const*) Unexecuted instantiation: Iex_2_5::MathExc::MathExc(char const*) Unexecuted instantiation: Iex_2_5::ErrnoExc::ErrnoExc(char const*) Unexecuted instantiation: Iex_2_5::NoImplExc::NoImplExc(char const*) Unexecuted instantiation: Iex_2_5::NullExc::NullExc(char const*) Unexecuted instantiation: Iex_2_5::TypeExc::TypeExc(char const*) Unexecuted instantiation: Iex_2_5::EpermExc::EpermExc(char const*) Unexecuted instantiation: Iex_2_5::EnoentExc::EnoentExc(char const*) Unexecuted instantiation: Iex_2_5::EsrchExc::EsrchExc(char const*) Unexecuted instantiation: Iex_2_5::EintrExc::EintrExc(char const*) Unexecuted instantiation: Iex_2_5::EioExc::EioExc(char const*) Unexecuted instantiation: Iex_2_5::EnxioExc::EnxioExc(char const*) Unexecuted instantiation: Iex_2_5::E2bigExc::E2bigExc(char const*) Unexecuted instantiation: Iex_2_5::EnoexecExc::EnoexecExc(char const*) Unexecuted instantiation: Iex_2_5::EbadfExc::EbadfExc(char const*) Unexecuted instantiation: Iex_2_5::EchildExc::EchildExc(char const*) Unexecuted instantiation: Iex_2_5::EagainExc::EagainExc(char const*) Unexecuted instantiation: Iex_2_5::EnomemExc::EnomemExc(char const*) Unexecuted instantiation: Iex_2_5::EaccesExc::EaccesExc(char const*) Unexecuted instantiation: Iex_2_5::EfaultExc::EfaultExc(char const*) Unexecuted instantiation: Iex_2_5::EnotblkExc::EnotblkExc(char const*) Unexecuted instantiation: Iex_2_5::EbusyExc::EbusyExc(char const*) Unexecuted instantiation: Iex_2_5::EexistExc::EexistExc(char const*) Unexecuted instantiation: Iex_2_5::ExdevExc::ExdevExc(char const*) Unexecuted instantiation: Iex_2_5::EnodevExc::EnodevExc(char const*) Unexecuted instantiation: Iex_2_5::EnotdirExc::EnotdirExc(char const*) Unexecuted instantiation: Iex_2_5::EisdirExc::EisdirExc(char const*) Unexecuted instantiation: Iex_2_5::EinvalExc::EinvalExc(char const*) Unexecuted instantiation: Iex_2_5::EnfileExc::EnfileExc(char const*) Unexecuted instantiation: Iex_2_5::EmfileExc::EmfileExc(char const*) Unexecuted instantiation: Iex_2_5::EnottyExc::EnottyExc(char const*) Unexecuted instantiation: Iex_2_5::EtxtbsyExc::EtxtbsyExc(char const*) Unexecuted instantiation: Iex_2_5::EfbigExc::EfbigExc(char const*) Unexecuted instantiation: Iex_2_5::EnospcExc::EnospcExc(char const*) Unexecuted instantiation: Iex_2_5::EspipeExc::EspipeExc(char const*) Unexecuted instantiation: Iex_2_5::ErofsExc::ErofsExc(char const*) Unexecuted instantiation: Iex_2_5::EmlinkExc::EmlinkExc(char const*) Unexecuted instantiation: Iex_2_5::EpipeExc::EpipeExc(char const*) Unexecuted instantiation: Iex_2_5::EdomExc::EdomExc(char const*) Unexecuted instantiation: Iex_2_5::ErangeExc::ErangeExc(char const*) Unexecuted instantiation: Iex_2_5::EnomsgExc::EnomsgExc(char const*) Unexecuted instantiation: Iex_2_5::EidrmExc::EidrmExc(char const*) Unexecuted instantiation: Iex_2_5::EchrngExc::EchrngExc(char const*) Unexecuted instantiation: Iex_2_5::El2nsyncExc::El2nsyncExc(char const*) Unexecuted instantiation: Iex_2_5::El3hltExc::El3hltExc(char const*) Unexecuted instantiation: Iex_2_5::El3rstExc::El3rstExc(char const*) Unexecuted instantiation: Iex_2_5::ElnrngExc::ElnrngExc(char const*) Unexecuted instantiation: Iex_2_5::EunatchExc::EunatchExc(char const*) Unexecuted instantiation: Iex_2_5::EnocsiExc::EnocsiExc(char const*) Unexecuted instantiation: Iex_2_5::El2hltExc::El2hltExc(char const*) Unexecuted instantiation: Iex_2_5::EdeadlkExc::EdeadlkExc(char const*) Unexecuted instantiation: Iex_2_5::EnolckExc::EnolckExc(char const*) Unexecuted instantiation: Iex_2_5::EbadeExc::EbadeExc(char const*) Unexecuted instantiation: Iex_2_5::EbadrExc::EbadrExc(char const*) Unexecuted instantiation: Iex_2_5::ExfullExc::ExfullExc(char const*) Unexecuted instantiation: Iex_2_5::EnoanoExc::EnoanoExc(char const*) Unexecuted instantiation: Iex_2_5::EbadrqcExc::EbadrqcExc(char const*) Unexecuted instantiation: Iex_2_5::EbadsltExc::EbadsltExc(char const*) Unexecuted instantiation: Iex_2_5::EdeadlockExc::EdeadlockExc(char const*) Unexecuted instantiation: Iex_2_5::EbfontExc::EbfontExc(char const*) Unexecuted instantiation: Iex_2_5::EnostrExc::EnostrExc(char const*) Unexecuted instantiation: Iex_2_5::EnodataExc::EnodataExc(char const*) Unexecuted instantiation: Iex_2_5::EtimeExc::EtimeExc(char const*) Unexecuted instantiation: Iex_2_5::EnosrExc::EnosrExc(char const*) Unexecuted instantiation: Iex_2_5::EnonetExc::EnonetExc(char const*) Unexecuted instantiation: Iex_2_5::EnopkgExc::EnopkgExc(char const*) Unexecuted instantiation: Iex_2_5::EremoteExc::EremoteExc(char const*) Unexecuted instantiation: Iex_2_5::EnolinkExc::EnolinkExc(char const*) Unexecuted instantiation: Iex_2_5::EadvExc::EadvExc(char const*) Unexecuted instantiation: Iex_2_5::EsrmntExc::EsrmntExc(char const*) Unexecuted instantiation: Iex_2_5::EcommExc::EcommExc(char const*) Unexecuted instantiation: Iex_2_5::EprotoExc::EprotoExc(char const*) Unexecuted instantiation: Iex_2_5::EmultihopExc::EmultihopExc(char const*) Unexecuted instantiation: Iex_2_5::EbadmsgExc::EbadmsgExc(char const*) Unexecuted instantiation: Iex_2_5::EnametoolongExc::EnametoolongExc(char const*) Unexecuted instantiation: Iex_2_5::EoverflowExc::EoverflowExc(char const*) Unexecuted instantiation: Iex_2_5::EnotuniqExc::EnotuniqExc(char const*) Unexecuted instantiation: Iex_2_5::EbadfdExc::EbadfdExc(char const*) Unexecuted instantiation: Iex_2_5::EremchgExc::EremchgExc(char const*) Unexecuted instantiation: Iex_2_5::ElibaccExc::ElibaccExc(char const*) Unexecuted instantiation: Iex_2_5::ElibbadExc::ElibbadExc(char const*) Unexecuted instantiation: Iex_2_5::ElibscnExc::ElibscnExc(char const*) Unexecuted instantiation: Iex_2_5::ElibmaxExc::ElibmaxExc(char const*) Unexecuted instantiation: Iex_2_5::ElibexecExc::ElibexecExc(char const*) Unexecuted instantiation: Iex_2_5::EilseqExc::EilseqExc(char const*) Unexecuted instantiation: Iex_2_5::EnosysExc::EnosysExc(char const*) Unexecuted instantiation: Iex_2_5::EloopExc::EloopExc(char const*) Unexecuted instantiation: Iex_2_5::ErestartExc::ErestartExc(char const*) Unexecuted instantiation: Iex_2_5::EstrpipeExc::EstrpipeExc(char const*) Unexecuted instantiation: Iex_2_5::EnotemptyExc::EnotemptyExc(char const*) Unexecuted instantiation: Iex_2_5::EusersExc::EusersExc(char const*) Unexecuted instantiation: Iex_2_5::EnotsockExc::EnotsockExc(char const*) Unexecuted instantiation: Iex_2_5::EdestaddrreqExc::EdestaddrreqExc(char const*) Unexecuted instantiation: Iex_2_5::EmsgsizeExc::EmsgsizeExc(char const*) Unexecuted instantiation: Iex_2_5::EprototypeExc::EprototypeExc(char const*) Unexecuted instantiation: Iex_2_5::EnoprotooptExc::EnoprotooptExc(char const*) Unexecuted instantiation: Iex_2_5::EprotonosupportExc::EprotonosupportExc(char const*) Unexecuted instantiation: Iex_2_5::EsocktnosupportExc::EsocktnosupportExc(char const*) Unexecuted instantiation: Iex_2_5::EopnotsuppExc::EopnotsuppExc(char const*) Unexecuted instantiation: Iex_2_5::EpfnosupportExc::EpfnosupportExc(char const*) Unexecuted instantiation: Iex_2_5::EafnosupportExc::EafnosupportExc(char const*) Unexecuted instantiation: Iex_2_5::EaddrinuseExc::EaddrinuseExc(char const*) Unexecuted instantiation: Iex_2_5::EaddrnotavailExc::EaddrnotavailExc(char const*) Unexecuted instantiation: Iex_2_5::EnetdownExc::EnetdownExc(char const*) Unexecuted instantiation: Iex_2_5::EnetunreachExc::EnetunreachExc(char const*) Unexecuted instantiation: Iex_2_5::EnetresetExc::EnetresetExc(char const*) Unexecuted instantiation: Iex_2_5::EconnabortedExc::EconnabortedExc(char const*) Unexecuted instantiation: Iex_2_5::EconnresetExc::EconnresetExc(char const*) Unexecuted instantiation: Iex_2_5::EnobufsExc::EnobufsExc(char const*) Unexecuted instantiation: Iex_2_5::EisconnExc::EisconnExc(char const*) Unexecuted instantiation: Iex_2_5::EnotconnExc::EnotconnExc(char const*) Unexecuted instantiation: Iex_2_5::EshutdownExc::EshutdownExc(char const*) Unexecuted instantiation: Iex_2_5::EtoomanyrefsExc::EtoomanyrefsExc(char const*) Unexecuted instantiation: Iex_2_5::EtimedoutExc::EtimedoutExc(char const*) Unexecuted instantiation: Iex_2_5::EconnrefusedExc::EconnrefusedExc(char const*) Unexecuted instantiation: Iex_2_5::EhostdownExc::EhostdownExc(char const*) Unexecuted instantiation: Iex_2_5::EhostunreachExc::EhostunreachExc(char const*) Unexecuted instantiation: Iex_2_5::EalreadyExc::EalreadyExc(char const*) Unexecuted instantiation: Iex_2_5::EinprogressExc::EinprogressExc(char const*) Unexecuted instantiation: Iex_2_5::EstaleExc::EstaleExc(char const*) Unexecuted instantiation: Iex_2_5::EioresidExc::EioresidExc(char const*) Unexecuted instantiation: Iex_2_5::EucleanExc::EucleanExc(char const*) Unexecuted instantiation: Iex_2_5::EnotnamExc::EnotnamExc(char const*) Unexecuted instantiation: Iex_2_5::EnavailExc::EnavailExc(char const*) Unexecuted instantiation: Iex_2_5::EisnamExc::EisnamExc(char const*) Unexecuted instantiation: Iex_2_5::EremoteioExc::EremoteioExc(char const*) Unexecuted instantiation: Iex_2_5::EinitExc::EinitExc(char const*) Unexecuted instantiation: Iex_2_5::EremdevExc::EremdevExc(char const*) Unexecuted instantiation: Iex_2_5::EcanceledExc::EcanceledExc(char const*) Unexecuted instantiation: Iex_2_5::EnolimfileExc::EnolimfileExc(char const*) Unexecuted instantiation: Iex_2_5::EproclimExc::EproclimExc(char const*) Unexecuted instantiation: Iex_2_5::EdisjointExc::EdisjointExc(char const*) Unexecuted instantiation: Iex_2_5::EnologinExc::EnologinExc(char const*) Unexecuted instantiation: Iex_2_5::EloginlimExc::EloginlimExc(char const*) Unexecuted instantiation: Iex_2_5::EgrouploopExc::EgrouploopExc(char const*) Unexecuted instantiation: Iex_2_5::EnoattachExc::EnoattachExc(char const*) Unexecuted instantiation: Iex_2_5::EnotsupExc::EnotsupExc(char const*) Unexecuted instantiation: Iex_2_5::EnoattrExc::EnoattrExc(char const*) Unexecuted instantiation: Iex_2_5::EdircorruptedExc::EdircorruptedExc(char const*) Unexecuted instantiation: Iex_2_5::EdquotExc::EdquotExc(char const*) Unexecuted instantiation: Iex_2_5::EnfsremoteExc::EnfsremoteExc(char const*) Unexecuted instantiation: Iex_2_5::EcontrollerExc::EcontrollerExc(char const*) Unexecuted instantiation: Iex_2_5::EnotcontrollerExc::EnotcontrollerExc(char const*) Unexecuted instantiation: Iex_2_5::EenqueuedExc::EenqueuedExc(char const*) Unexecuted instantiation: Iex_2_5::EnotenqueuedExc::EnotenqueuedExc(char const*) Unexecuted instantiation: Iex_2_5::EjoinedExc::EjoinedExc(char const*) Unexecuted instantiation: Iex_2_5::EnotjoinedExc::EnotjoinedExc(char const*) Unexecuted instantiation: Iex_2_5::EnoprocExc::EnoprocExc(char const*) Unexecuted instantiation: Iex_2_5::EmustrunExc::EmustrunExc(char const*) Unexecuted instantiation: Iex_2_5::EnotstoppedExc::EnotstoppedExc(char const*) Unexecuted instantiation: Iex_2_5::EclockcpuExc::EclockcpuExc(char const*) Unexecuted instantiation: Iex_2_5::EinvalstateExc::EinvalstateExc(char const*) Unexecuted instantiation: Iex_2_5::EnoexistExc::EnoexistExc(char const*) Unexecuted instantiation: Iex_2_5::EendofminorExc::EendofminorExc(char const*) Unexecuted instantiation: Iex_2_5::EbufsizeExc::EbufsizeExc(char const*) Unexecuted instantiation: Iex_2_5::EemptyExc::EemptyExc(char const*) Unexecuted instantiation: Iex_2_5::EnointrgroupExc::EnointrgroupExc(char const*) Unexecuted instantiation: Iex_2_5::EinvalmodeExc::EinvalmodeExc(char const*) Unexecuted instantiation: Iex_2_5::EcantextentExc::EcantextentExc(char const*) Unexecuted instantiation: Iex_2_5::EinvaltimeExc::EinvaltimeExc(char const*) Unexecuted instantiation: Iex_2_5::EdestroyedExc::EdestroyedExc(char const*) Unexecuted instantiation: Iex_2_5::OverflowExc::OverflowExc(char const*) Unexecuted instantiation: Iex_2_5::UnderflowExc::UnderflowExc(char const*) Unexecuted instantiation: Iex_2_5::DivzeroExc::DivzeroExc(char const*) Unexecuted instantiation: Iex_2_5::InexactExc::InexactExc(char const*) Unexecuted instantiation: Iex_2_5::InvalidFpOpExc::InvalidFpOpExc(char const*) |
153 | 0 | exp name::name (const std::string& text) throw () : base (text) {} \ Unexecuted instantiation: Imath_2_5::NullVecExc::NullVecExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Imath_2_5::InfPointExc::InfPointExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Imath_2_5::NullQuatExc::NullQuatExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Imath_2_5::SingMatrixExc::SingMatrixExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Imath_2_5::ZeroScaleExc::ZeroScaleExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Imath_2_5::IntVecNormalizeExc::IntVecNormalizeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::ArgExc::ArgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::LogicExc::LogicExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::InputExc::InputExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::IoExc::IoExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::MathExc::MathExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::ErrnoExc::ErrnoExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::NoImplExc::NoImplExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::NullExc::NullExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::TypeExc::TypeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EpermExc::EpermExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnoentExc::EnoentExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EsrchExc::EsrchExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EintrExc::EintrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EioExc::EioExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnxioExc::EnxioExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::E2bigExc::E2bigExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnoexecExc::EnoexecExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EbadfExc::EbadfExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EchildExc::EchildExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EagainExc::EagainExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnomemExc::EnomemExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EaccesExc::EaccesExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EfaultExc::EfaultExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnotblkExc::EnotblkExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EbusyExc::EbusyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EexistExc::EexistExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::ExdevExc::ExdevExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnodevExc::EnodevExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnotdirExc::EnotdirExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EisdirExc::EisdirExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EinvalExc::EinvalExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnfileExc::EnfileExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EmfileExc::EmfileExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnottyExc::EnottyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EtxtbsyExc::EtxtbsyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EfbigExc::EfbigExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnospcExc::EnospcExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EspipeExc::EspipeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::ErofsExc::ErofsExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EmlinkExc::EmlinkExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EpipeExc::EpipeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EdomExc::EdomExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::ErangeExc::ErangeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnomsgExc::EnomsgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EidrmExc::EidrmExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EchrngExc::EchrngExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::El2nsyncExc::El2nsyncExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::El3hltExc::El3hltExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::El3rstExc::El3rstExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::ElnrngExc::ElnrngExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EunatchExc::EunatchExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnocsiExc::EnocsiExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::El2hltExc::El2hltExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EdeadlkExc::EdeadlkExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnolckExc::EnolckExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EbadeExc::EbadeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EbadrExc::EbadrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::ExfullExc::ExfullExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnoanoExc::EnoanoExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EbadrqcExc::EbadrqcExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EbadsltExc::EbadsltExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EdeadlockExc::EdeadlockExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EbfontExc::EbfontExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnostrExc::EnostrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnodataExc::EnodataExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EtimeExc::EtimeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnosrExc::EnosrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnonetExc::EnonetExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnopkgExc::EnopkgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EremoteExc::EremoteExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnolinkExc::EnolinkExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EadvExc::EadvExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EsrmntExc::EsrmntExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EcommExc::EcommExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EprotoExc::EprotoExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EmultihopExc::EmultihopExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EbadmsgExc::EbadmsgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnametoolongExc::EnametoolongExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EoverflowExc::EoverflowExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnotuniqExc::EnotuniqExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EbadfdExc::EbadfdExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EremchgExc::EremchgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::ElibaccExc::ElibaccExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::ElibbadExc::ElibbadExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::ElibscnExc::ElibscnExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::ElibmaxExc::ElibmaxExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::ElibexecExc::ElibexecExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EilseqExc::EilseqExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnosysExc::EnosysExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EloopExc::EloopExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::ErestartExc::ErestartExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EstrpipeExc::EstrpipeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnotemptyExc::EnotemptyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EusersExc::EusersExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnotsockExc::EnotsockExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EdestaddrreqExc::EdestaddrreqExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EmsgsizeExc::EmsgsizeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EprototypeExc::EprototypeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnoprotooptExc::EnoprotooptExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EprotonosupportExc::EprotonosupportExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EsocktnosupportExc::EsocktnosupportExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EopnotsuppExc::EopnotsuppExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EpfnosupportExc::EpfnosupportExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EafnosupportExc::EafnosupportExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EaddrinuseExc::EaddrinuseExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EaddrnotavailExc::EaddrnotavailExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnetdownExc::EnetdownExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnetunreachExc::EnetunreachExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnetresetExc::EnetresetExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EconnabortedExc::EconnabortedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EconnresetExc::EconnresetExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnobufsExc::EnobufsExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EisconnExc::EisconnExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnotconnExc::EnotconnExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EshutdownExc::EshutdownExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EtoomanyrefsExc::EtoomanyrefsExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EtimedoutExc::EtimedoutExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EconnrefusedExc::EconnrefusedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EhostdownExc::EhostdownExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EhostunreachExc::EhostunreachExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EalreadyExc::EalreadyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EinprogressExc::EinprogressExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EstaleExc::EstaleExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EioresidExc::EioresidExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EucleanExc::EucleanExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnotnamExc::EnotnamExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnavailExc::EnavailExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EisnamExc::EisnamExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EremoteioExc::EremoteioExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EinitExc::EinitExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EremdevExc::EremdevExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EcanceledExc::EcanceledExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnolimfileExc::EnolimfileExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EproclimExc::EproclimExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EdisjointExc::EdisjointExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnologinExc::EnologinExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EloginlimExc::EloginlimExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EgrouploopExc::EgrouploopExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnoattachExc::EnoattachExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnotsupExc::EnotsupExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnoattrExc::EnoattrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EdircorruptedExc::EdircorruptedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EdquotExc::EdquotExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnfsremoteExc::EnfsremoteExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EcontrollerExc::EcontrollerExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnotcontrollerExc::EnotcontrollerExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EenqueuedExc::EenqueuedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnotenqueuedExc::EnotenqueuedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EjoinedExc::EjoinedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnotjoinedExc::EnotjoinedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnoprocExc::EnoprocExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EmustrunExc::EmustrunExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnotstoppedExc::EnotstoppedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EclockcpuExc::EclockcpuExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EinvalstateExc::EinvalstateExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnoexistExc::EnoexistExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EendofminorExc::EendofminorExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EbufsizeExc::EbufsizeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EemptyExc::EemptyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EnointrgroupExc::EnointrgroupExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EinvalmodeExc::EinvalmodeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EcantextentExc::EcantextentExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EinvaltimeExc::EinvaltimeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::EdestroyedExc::EdestroyedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::OverflowExc::OverflowExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::UnderflowExc::UnderflowExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::DivzeroExc::DivzeroExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::InexactExc::InexactExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_2_5::InvalidFpOpExc::InvalidFpOpExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) |
154 | 0 | exp name::name (std::stringstream& text) throw () : base (text) {} \ Unexecuted instantiation: Imath_2_5::NullVecExc::NullVecExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Imath_2_5::InfPointExc::InfPointExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Imath_2_5::NullQuatExc::NullQuatExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Imath_2_5::SingMatrixExc::SingMatrixExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Imath_2_5::ZeroScaleExc::ZeroScaleExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Imath_2_5::IntVecNormalizeExc::IntVecNormalizeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::ArgExc::ArgExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::LogicExc::LogicExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::InputExc::InputExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::IoExc::IoExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::MathExc::MathExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::ErrnoExc::ErrnoExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::NoImplExc::NoImplExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::NullExc::NullExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::TypeExc::TypeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EpermExc::EpermExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnoentExc::EnoentExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EsrchExc::EsrchExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EintrExc::EintrExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EioExc::EioExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnxioExc::EnxioExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::E2bigExc::E2bigExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnoexecExc::EnoexecExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EbadfExc::EbadfExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EchildExc::EchildExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EagainExc::EagainExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnomemExc::EnomemExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EaccesExc::EaccesExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EfaultExc::EfaultExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnotblkExc::EnotblkExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EbusyExc::EbusyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EexistExc::EexistExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::ExdevExc::ExdevExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnodevExc::EnodevExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnotdirExc::EnotdirExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EisdirExc::EisdirExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EinvalExc::EinvalExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnfileExc::EnfileExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EmfileExc::EmfileExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnottyExc::EnottyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EtxtbsyExc::EtxtbsyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EfbigExc::EfbigExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnospcExc::EnospcExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EspipeExc::EspipeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::ErofsExc::ErofsExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EmlinkExc::EmlinkExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EpipeExc::EpipeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EdomExc::EdomExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::ErangeExc::ErangeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnomsgExc::EnomsgExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EidrmExc::EidrmExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EchrngExc::EchrngExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::El2nsyncExc::El2nsyncExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::El3hltExc::El3hltExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::El3rstExc::El3rstExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::ElnrngExc::ElnrngExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EunatchExc::EunatchExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnocsiExc::EnocsiExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::El2hltExc::El2hltExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EdeadlkExc::EdeadlkExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnolckExc::EnolckExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EbadeExc::EbadeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EbadrExc::EbadrExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::ExfullExc::ExfullExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnoanoExc::EnoanoExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EbadrqcExc::EbadrqcExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EbadsltExc::EbadsltExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EdeadlockExc::EdeadlockExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EbfontExc::EbfontExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnostrExc::EnostrExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnodataExc::EnodataExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EtimeExc::EtimeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnosrExc::EnosrExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnonetExc::EnonetExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnopkgExc::EnopkgExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EremoteExc::EremoteExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnolinkExc::EnolinkExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EadvExc::EadvExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EsrmntExc::EsrmntExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EcommExc::EcommExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EprotoExc::EprotoExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EmultihopExc::EmultihopExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EbadmsgExc::EbadmsgExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnametoolongExc::EnametoolongExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EoverflowExc::EoverflowExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnotuniqExc::EnotuniqExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EbadfdExc::EbadfdExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EremchgExc::EremchgExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::ElibaccExc::ElibaccExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::ElibbadExc::ElibbadExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::ElibscnExc::ElibscnExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::ElibmaxExc::ElibmaxExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::ElibexecExc::ElibexecExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EilseqExc::EilseqExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnosysExc::EnosysExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EloopExc::EloopExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::ErestartExc::ErestartExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EstrpipeExc::EstrpipeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnotemptyExc::EnotemptyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EusersExc::EusersExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnotsockExc::EnotsockExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EdestaddrreqExc::EdestaddrreqExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EmsgsizeExc::EmsgsizeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EprototypeExc::EprototypeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnoprotooptExc::EnoprotooptExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EprotonosupportExc::EprotonosupportExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EsocktnosupportExc::EsocktnosupportExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EopnotsuppExc::EopnotsuppExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EpfnosupportExc::EpfnosupportExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EafnosupportExc::EafnosupportExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EaddrinuseExc::EaddrinuseExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EaddrnotavailExc::EaddrnotavailExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnetdownExc::EnetdownExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnetunreachExc::EnetunreachExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnetresetExc::EnetresetExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EconnabortedExc::EconnabortedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EconnresetExc::EconnresetExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnobufsExc::EnobufsExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EisconnExc::EisconnExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnotconnExc::EnotconnExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EshutdownExc::EshutdownExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EtoomanyrefsExc::EtoomanyrefsExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EtimedoutExc::EtimedoutExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EconnrefusedExc::EconnrefusedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EhostdownExc::EhostdownExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EhostunreachExc::EhostunreachExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EalreadyExc::EalreadyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EinprogressExc::EinprogressExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EstaleExc::EstaleExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EioresidExc::EioresidExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EucleanExc::EucleanExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnotnamExc::EnotnamExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnavailExc::EnavailExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EisnamExc::EisnamExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EremoteioExc::EremoteioExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EinitExc::EinitExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EremdevExc::EremdevExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EcanceledExc::EcanceledExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnolimfileExc::EnolimfileExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EproclimExc::EproclimExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EdisjointExc::EdisjointExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnologinExc::EnologinExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EloginlimExc::EloginlimExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EgrouploopExc::EgrouploopExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnoattachExc::EnoattachExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnotsupExc::EnotsupExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnoattrExc::EnoattrExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EdircorruptedExc::EdircorruptedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EdquotExc::EdquotExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnfsremoteExc::EnfsremoteExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EcontrollerExc::EcontrollerExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnotcontrollerExc::EnotcontrollerExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EenqueuedExc::EenqueuedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnotenqueuedExc::EnotenqueuedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EjoinedExc::EjoinedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnotjoinedExc::EnotjoinedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnoprocExc::EnoprocExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EmustrunExc::EmustrunExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnotstoppedExc::EnotstoppedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EclockcpuExc::EclockcpuExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EinvalstateExc::EinvalstateExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnoexistExc::EnoexistExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EendofminorExc::EendofminorExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EbufsizeExc::EbufsizeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EemptyExc::EemptyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EnointrgroupExc::EnointrgroupExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EinvalmodeExc::EinvalmodeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EcantextentExc::EcantextentExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EinvaltimeExc::EinvaltimeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::EdestroyedExc::EdestroyedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::OverflowExc::OverflowExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::UnderflowExc::UnderflowExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::DivzeroExc::DivzeroExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::InexactExc::InexactExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_2_5::InvalidFpOpExc::InvalidFpOpExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) |
155 | 0 | exp name::name (const name &other) throw() : base (other) {} \ Unexecuted instantiation: Imath_2_5::NullVecExc::NullVecExc(Imath_2_5::NullVecExc const&) Unexecuted instantiation: Imath_2_5::InfPointExc::InfPointExc(Imath_2_5::InfPointExc const&) Unexecuted instantiation: Imath_2_5::NullQuatExc::NullQuatExc(Imath_2_5::NullQuatExc const&) Unexecuted instantiation: Imath_2_5::SingMatrixExc::SingMatrixExc(Imath_2_5::SingMatrixExc const&) Unexecuted instantiation: Imath_2_5::ZeroScaleExc::ZeroScaleExc(Imath_2_5::ZeroScaleExc const&) Unexecuted instantiation: Imath_2_5::IntVecNormalizeExc::IntVecNormalizeExc(Imath_2_5::IntVecNormalizeExc const&) Unexecuted instantiation: Iex_2_5::ArgExc::ArgExc(Iex_2_5::ArgExc const&) Unexecuted instantiation: Iex_2_5::LogicExc::LogicExc(Iex_2_5::LogicExc const&) Unexecuted instantiation: Iex_2_5::InputExc::InputExc(Iex_2_5::InputExc const&) Unexecuted instantiation: Iex_2_5::IoExc::IoExc(Iex_2_5::IoExc const&) Unexecuted instantiation: Iex_2_5::MathExc::MathExc(Iex_2_5::MathExc const&) Unexecuted instantiation: Iex_2_5::ErrnoExc::ErrnoExc(Iex_2_5::ErrnoExc const&) Unexecuted instantiation: Iex_2_5::NoImplExc::NoImplExc(Iex_2_5::NoImplExc const&) Unexecuted instantiation: Iex_2_5::NullExc::NullExc(Iex_2_5::NullExc const&) Unexecuted instantiation: Iex_2_5::TypeExc::TypeExc(Iex_2_5::TypeExc const&) Unexecuted instantiation: Iex_2_5::EpermExc::EpermExc(Iex_2_5::EpermExc const&) Unexecuted instantiation: Iex_2_5::EnoentExc::EnoentExc(Iex_2_5::EnoentExc const&) Unexecuted instantiation: Iex_2_5::EsrchExc::EsrchExc(Iex_2_5::EsrchExc const&) Unexecuted instantiation: Iex_2_5::EintrExc::EintrExc(Iex_2_5::EintrExc const&) Unexecuted instantiation: Iex_2_5::EioExc::EioExc(Iex_2_5::EioExc const&) Unexecuted instantiation: Iex_2_5::EnxioExc::EnxioExc(Iex_2_5::EnxioExc const&) Unexecuted instantiation: Iex_2_5::E2bigExc::E2bigExc(Iex_2_5::E2bigExc const&) Unexecuted instantiation: Iex_2_5::EnoexecExc::EnoexecExc(Iex_2_5::EnoexecExc const&) Unexecuted instantiation: Iex_2_5::EbadfExc::EbadfExc(Iex_2_5::EbadfExc const&) Unexecuted instantiation: Iex_2_5::EchildExc::EchildExc(Iex_2_5::EchildExc const&) Unexecuted instantiation: Iex_2_5::EagainExc::EagainExc(Iex_2_5::EagainExc const&) Unexecuted instantiation: Iex_2_5::EnomemExc::EnomemExc(Iex_2_5::EnomemExc const&) Unexecuted instantiation: Iex_2_5::EaccesExc::EaccesExc(Iex_2_5::EaccesExc const&) Unexecuted instantiation: Iex_2_5::EfaultExc::EfaultExc(Iex_2_5::EfaultExc const&) Unexecuted instantiation: Iex_2_5::EnotblkExc::EnotblkExc(Iex_2_5::EnotblkExc const&) Unexecuted instantiation: Iex_2_5::EbusyExc::EbusyExc(Iex_2_5::EbusyExc const&) Unexecuted instantiation: Iex_2_5::EexistExc::EexistExc(Iex_2_5::EexistExc const&) Unexecuted instantiation: Iex_2_5::ExdevExc::ExdevExc(Iex_2_5::ExdevExc const&) Unexecuted instantiation: Iex_2_5::EnodevExc::EnodevExc(Iex_2_5::EnodevExc const&) Unexecuted instantiation: Iex_2_5::EnotdirExc::EnotdirExc(Iex_2_5::EnotdirExc const&) Unexecuted instantiation: Iex_2_5::EisdirExc::EisdirExc(Iex_2_5::EisdirExc const&) Unexecuted instantiation: Iex_2_5::EinvalExc::EinvalExc(Iex_2_5::EinvalExc const&) Unexecuted instantiation: Iex_2_5::EnfileExc::EnfileExc(Iex_2_5::EnfileExc const&) Unexecuted instantiation: Iex_2_5::EmfileExc::EmfileExc(Iex_2_5::EmfileExc const&) Unexecuted instantiation: Iex_2_5::EnottyExc::EnottyExc(Iex_2_5::EnottyExc const&) Unexecuted instantiation: Iex_2_5::EtxtbsyExc::EtxtbsyExc(Iex_2_5::EtxtbsyExc const&) Unexecuted instantiation: Iex_2_5::EfbigExc::EfbigExc(Iex_2_5::EfbigExc const&) Unexecuted instantiation: Iex_2_5::EnospcExc::EnospcExc(Iex_2_5::EnospcExc const&) Unexecuted instantiation: Iex_2_5::EspipeExc::EspipeExc(Iex_2_5::EspipeExc const&) Unexecuted instantiation: Iex_2_5::ErofsExc::ErofsExc(Iex_2_5::ErofsExc const&) Unexecuted instantiation: Iex_2_5::EmlinkExc::EmlinkExc(Iex_2_5::EmlinkExc const&) Unexecuted instantiation: Iex_2_5::EpipeExc::EpipeExc(Iex_2_5::EpipeExc const&) Unexecuted instantiation: Iex_2_5::EdomExc::EdomExc(Iex_2_5::EdomExc const&) Unexecuted instantiation: Iex_2_5::ErangeExc::ErangeExc(Iex_2_5::ErangeExc const&) Unexecuted instantiation: Iex_2_5::EnomsgExc::EnomsgExc(Iex_2_5::EnomsgExc const&) Unexecuted instantiation: Iex_2_5::EidrmExc::EidrmExc(Iex_2_5::EidrmExc const&) Unexecuted instantiation: Iex_2_5::EchrngExc::EchrngExc(Iex_2_5::EchrngExc const&) Unexecuted instantiation: Iex_2_5::El2nsyncExc::El2nsyncExc(Iex_2_5::El2nsyncExc const&) Unexecuted instantiation: Iex_2_5::El3hltExc::El3hltExc(Iex_2_5::El3hltExc const&) Unexecuted instantiation: Iex_2_5::El3rstExc::El3rstExc(Iex_2_5::El3rstExc const&) Unexecuted instantiation: Iex_2_5::ElnrngExc::ElnrngExc(Iex_2_5::ElnrngExc const&) Unexecuted instantiation: Iex_2_5::EunatchExc::EunatchExc(Iex_2_5::EunatchExc const&) Unexecuted instantiation: Iex_2_5::EnocsiExc::EnocsiExc(Iex_2_5::EnocsiExc const&) Unexecuted instantiation: Iex_2_5::El2hltExc::El2hltExc(Iex_2_5::El2hltExc const&) Unexecuted instantiation: Iex_2_5::EdeadlkExc::EdeadlkExc(Iex_2_5::EdeadlkExc const&) Unexecuted instantiation: Iex_2_5::EnolckExc::EnolckExc(Iex_2_5::EnolckExc const&) Unexecuted instantiation: Iex_2_5::EbadeExc::EbadeExc(Iex_2_5::EbadeExc const&) Unexecuted instantiation: Iex_2_5::EbadrExc::EbadrExc(Iex_2_5::EbadrExc const&) Unexecuted instantiation: Iex_2_5::ExfullExc::ExfullExc(Iex_2_5::ExfullExc const&) Unexecuted instantiation: Iex_2_5::EnoanoExc::EnoanoExc(Iex_2_5::EnoanoExc const&) Unexecuted instantiation: Iex_2_5::EbadrqcExc::EbadrqcExc(Iex_2_5::EbadrqcExc const&) Unexecuted instantiation: Iex_2_5::EbadsltExc::EbadsltExc(Iex_2_5::EbadsltExc const&) Unexecuted instantiation: Iex_2_5::EdeadlockExc::EdeadlockExc(Iex_2_5::EdeadlockExc const&) Unexecuted instantiation: Iex_2_5::EbfontExc::EbfontExc(Iex_2_5::EbfontExc const&) Unexecuted instantiation: Iex_2_5::EnostrExc::EnostrExc(Iex_2_5::EnostrExc const&) Unexecuted instantiation: Iex_2_5::EnodataExc::EnodataExc(Iex_2_5::EnodataExc const&) Unexecuted instantiation: Iex_2_5::EtimeExc::EtimeExc(Iex_2_5::EtimeExc const&) Unexecuted instantiation: Iex_2_5::EnosrExc::EnosrExc(Iex_2_5::EnosrExc const&) Unexecuted instantiation: Iex_2_5::EnonetExc::EnonetExc(Iex_2_5::EnonetExc const&) Unexecuted instantiation: Iex_2_5::EnopkgExc::EnopkgExc(Iex_2_5::EnopkgExc const&) Unexecuted instantiation: Iex_2_5::EremoteExc::EremoteExc(Iex_2_5::EremoteExc const&) Unexecuted instantiation: Iex_2_5::EnolinkExc::EnolinkExc(Iex_2_5::EnolinkExc const&) Unexecuted instantiation: Iex_2_5::EadvExc::EadvExc(Iex_2_5::EadvExc const&) Unexecuted instantiation: Iex_2_5::EsrmntExc::EsrmntExc(Iex_2_5::EsrmntExc const&) Unexecuted instantiation: Iex_2_5::EcommExc::EcommExc(Iex_2_5::EcommExc const&) Unexecuted instantiation: Iex_2_5::EprotoExc::EprotoExc(Iex_2_5::EprotoExc const&) Unexecuted instantiation: Iex_2_5::EmultihopExc::EmultihopExc(Iex_2_5::EmultihopExc const&) Unexecuted instantiation: Iex_2_5::EbadmsgExc::EbadmsgExc(Iex_2_5::EbadmsgExc const&) Unexecuted instantiation: Iex_2_5::EnametoolongExc::EnametoolongExc(Iex_2_5::EnametoolongExc const&) Unexecuted instantiation: Iex_2_5::EoverflowExc::EoverflowExc(Iex_2_5::EoverflowExc const&) Unexecuted instantiation: Iex_2_5::EnotuniqExc::EnotuniqExc(Iex_2_5::EnotuniqExc const&) Unexecuted instantiation: Iex_2_5::EbadfdExc::EbadfdExc(Iex_2_5::EbadfdExc const&) Unexecuted instantiation: Iex_2_5::EremchgExc::EremchgExc(Iex_2_5::EremchgExc const&) Unexecuted instantiation: Iex_2_5::ElibaccExc::ElibaccExc(Iex_2_5::ElibaccExc const&) Unexecuted instantiation: Iex_2_5::ElibbadExc::ElibbadExc(Iex_2_5::ElibbadExc const&) Unexecuted instantiation: Iex_2_5::ElibscnExc::ElibscnExc(Iex_2_5::ElibscnExc const&) Unexecuted instantiation: Iex_2_5::ElibmaxExc::ElibmaxExc(Iex_2_5::ElibmaxExc const&) Unexecuted instantiation: Iex_2_5::ElibexecExc::ElibexecExc(Iex_2_5::ElibexecExc const&) Unexecuted instantiation: Iex_2_5::EilseqExc::EilseqExc(Iex_2_5::EilseqExc const&) Unexecuted instantiation: Iex_2_5::EnosysExc::EnosysExc(Iex_2_5::EnosysExc const&) Unexecuted instantiation: Iex_2_5::EloopExc::EloopExc(Iex_2_5::EloopExc const&) Unexecuted instantiation: Iex_2_5::ErestartExc::ErestartExc(Iex_2_5::ErestartExc const&) Unexecuted instantiation: Iex_2_5::EstrpipeExc::EstrpipeExc(Iex_2_5::EstrpipeExc const&) Unexecuted instantiation: Iex_2_5::EnotemptyExc::EnotemptyExc(Iex_2_5::EnotemptyExc const&) Unexecuted instantiation: Iex_2_5::EusersExc::EusersExc(Iex_2_5::EusersExc const&) Unexecuted instantiation: Iex_2_5::EnotsockExc::EnotsockExc(Iex_2_5::EnotsockExc const&) Unexecuted instantiation: Iex_2_5::EdestaddrreqExc::EdestaddrreqExc(Iex_2_5::EdestaddrreqExc const&) Unexecuted instantiation: Iex_2_5::EmsgsizeExc::EmsgsizeExc(Iex_2_5::EmsgsizeExc const&) Unexecuted instantiation: Iex_2_5::EprototypeExc::EprototypeExc(Iex_2_5::EprototypeExc const&) Unexecuted instantiation: Iex_2_5::EnoprotooptExc::EnoprotooptExc(Iex_2_5::EnoprotooptExc const&) Unexecuted instantiation: Iex_2_5::EprotonosupportExc::EprotonosupportExc(Iex_2_5::EprotonosupportExc const&) Unexecuted instantiation: Iex_2_5::EsocktnosupportExc::EsocktnosupportExc(Iex_2_5::EsocktnosupportExc const&) Unexecuted instantiation: Iex_2_5::EopnotsuppExc::EopnotsuppExc(Iex_2_5::EopnotsuppExc const&) Unexecuted instantiation: Iex_2_5::EpfnosupportExc::EpfnosupportExc(Iex_2_5::EpfnosupportExc const&) Unexecuted instantiation: Iex_2_5::EafnosupportExc::EafnosupportExc(Iex_2_5::EafnosupportExc const&) Unexecuted instantiation: Iex_2_5::EaddrinuseExc::EaddrinuseExc(Iex_2_5::EaddrinuseExc const&) Unexecuted instantiation: Iex_2_5::EaddrnotavailExc::EaddrnotavailExc(Iex_2_5::EaddrnotavailExc const&) Unexecuted instantiation: Iex_2_5::EnetdownExc::EnetdownExc(Iex_2_5::EnetdownExc const&) Unexecuted instantiation: Iex_2_5::EnetunreachExc::EnetunreachExc(Iex_2_5::EnetunreachExc const&) Unexecuted instantiation: Iex_2_5::EnetresetExc::EnetresetExc(Iex_2_5::EnetresetExc const&) Unexecuted instantiation: Iex_2_5::EconnabortedExc::EconnabortedExc(Iex_2_5::EconnabortedExc const&) Unexecuted instantiation: Iex_2_5::EconnresetExc::EconnresetExc(Iex_2_5::EconnresetExc const&) Unexecuted instantiation: Iex_2_5::EnobufsExc::EnobufsExc(Iex_2_5::EnobufsExc const&) Unexecuted instantiation: Iex_2_5::EisconnExc::EisconnExc(Iex_2_5::EisconnExc const&) Unexecuted instantiation: Iex_2_5::EnotconnExc::EnotconnExc(Iex_2_5::EnotconnExc const&) Unexecuted instantiation: Iex_2_5::EshutdownExc::EshutdownExc(Iex_2_5::EshutdownExc const&) Unexecuted instantiation: Iex_2_5::EtoomanyrefsExc::EtoomanyrefsExc(Iex_2_5::EtoomanyrefsExc const&) Unexecuted instantiation: Iex_2_5::EtimedoutExc::EtimedoutExc(Iex_2_5::EtimedoutExc const&) Unexecuted instantiation: Iex_2_5::EconnrefusedExc::EconnrefusedExc(Iex_2_5::EconnrefusedExc const&) Unexecuted instantiation: Iex_2_5::EhostdownExc::EhostdownExc(Iex_2_5::EhostdownExc const&) Unexecuted instantiation: Iex_2_5::EhostunreachExc::EhostunreachExc(Iex_2_5::EhostunreachExc const&) Unexecuted instantiation: Iex_2_5::EalreadyExc::EalreadyExc(Iex_2_5::EalreadyExc const&) Unexecuted instantiation: Iex_2_5::EinprogressExc::EinprogressExc(Iex_2_5::EinprogressExc const&) Unexecuted instantiation: Iex_2_5::EstaleExc::EstaleExc(Iex_2_5::EstaleExc const&) Unexecuted instantiation: Iex_2_5::EioresidExc::EioresidExc(Iex_2_5::EioresidExc const&) Unexecuted instantiation: Iex_2_5::EucleanExc::EucleanExc(Iex_2_5::EucleanExc const&) Unexecuted instantiation: Iex_2_5::EnotnamExc::EnotnamExc(Iex_2_5::EnotnamExc const&) Unexecuted instantiation: Iex_2_5::EnavailExc::EnavailExc(Iex_2_5::EnavailExc const&) Unexecuted instantiation: Iex_2_5::EisnamExc::EisnamExc(Iex_2_5::EisnamExc const&) Unexecuted instantiation: Iex_2_5::EremoteioExc::EremoteioExc(Iex_2_5::EremoteioExc const&) Unexecuted instantiation: Iex_2_5::EinitExc::EinitExc(Iex_2_5::EinitExc const&) Unexecuted instantiation: Iex_2_5::EremdevExc::EremdevExc(Iex_2_5::EremdevExc const&) Unexecuted instantiation: Iex_2_5::EcanceledExc::EcanceledExc(Iex_2_5::EcanceledExc const&) Unexecuted instantiation: Iex_2_5::EnolimfileExc::EnolimfileExc(Iex_2_5::EnolimfileExc const&) Unexecuted instantiation: Iex_2_5::EproclimExc::EproclimExc(Iex_2_5::EproclimExc const&) Unexecuted instantiation: Iex_2_5::EdisjointExc::EdisjointExc(Iex_2_5::EdisjointExc const&) Unexecuted instantiation: Iex_2_5::EnologinExc::EnologinExc(Iex_2_5::EnologinExc const&) Unexecuted instantiation: Iex_2_5::EloginlimExc::EloginlimExc(Iex_2_5::EloginlimExc const&) Unexecuted instantiation: Iex_2_5::EgrouploopExc::EgrouploopExc(Iex_2_5::EgrouploopExc const&) Unexecuted instantiation: Iex_2_5::EnoattachExc::EnoattachExc(Iex_2_5::EnoattachExc const&) Unexecuted instantiation: Iex_2_5::EnotsupExc::EnotsupExc(Iex_2_5::EnotsupExc const&) Unexecuted instantiation: Iex_2_5::EnoattrExc::EnoattrExc(Iex_2_5::EnoattrExc const&) Unexecuted instantiation: Iex_2_5::EdircorruptedExc::EdircorruptedExc(Iex_2_5::EdircorruptedExc const&) Unexecuted instantiation: Iex_2_5::EdquotExc::EdquotExc(Iex_2_5::EdquotExc const&) Unexecuted instantiation: Iex_2_5::EnfsremoteExc::EnfsremoteExc(Iex_2_5::EnfsremoteExc const&) Unexecuted instantiation: Iex_2_5::EcontrollerExc::EcontrollerExc(Iex_2_5::EcontrollerExc const&) Unexecuted instantiation: Iex_2_5::EnotcontrollerExc::EnotcontrollerExc(Iex_2_5::EnotcontrollerExc const&) Unexecuted instantiation: Iex_2_5::EenqueuedExc::EenqueuedExc(Iex_2_5::EenqueuedExc const&) Unexecuted instantiation: Iex_2_5::EnotenqueuedExc::EnotenqueuedExc(Iex_2_5::EnotenqueuedExc const&) Unexecuted instantiation: Iex_2_5::EjoinedExc::EjoinedExc(Iex_2_5::EjoinedExc const&) Unexecuted instantiation: Iex_2_5::EnotjoinedExc::EnotjoinedExc(Iex_2_5::EnotjoinedExc const&) Unexecuted instantiation: Iex_2_5::EnoprocExc::EnoprocExc(Iex_2_5::EnoprocExc const&) Unexecuted instantiation: Iex_2_5::EmustrunExc::EmustrunExc(Iex_2_5::EmustrunExc const&) Unexecuted instantiation: Iex_2_5::EnotstoppedExc::EnotstoppedExc(Iex_2_5::EnotstoppedExc const&) Unexecuted instantiation: Iex_2_5::EclockcpuExc::EclockcpuExc(Iex_2_5::EclockcpuExc const&) Unexecuted instantiation: Iex_2_5::EinvalstateExc::EinvalstateExc(Iex_2_5::EinvalstateExc const&) Unexecuted instantiation: Iex_2_5::EnoexistExc::EnoexistExc(Iex_2_5::EnoexistExc const&) Unexecuted instantiation: Iex_2_5::EendofminorExc::EendofminorExc(Iex_2_5::EendofminorExc const&) Unexecuted instantiation: Iex_2_5::EbufsizeExc::EbufsizeExc(Iex_2_5::EbufsizeExc const&) Unexecuted instantiation: Iex_2_5::EemptyExc::EemptyExc(Iex_2_5::EemptyExc const&) Unexecuted instantiation: Iex_2_5::EnointrgroupExc::EnointrgroupExc(Iex_2_5::EnointrgroupExc const&) Unexecuted instantiation: Iex_2_5::EinvalmodeExc::EinvalmodeExc(Iex_2_5::EinvalmodeExc const&) Unexecuted instantiation: Iex_2_5::EcantextentExc::EcantextentExc(Iex_2_5::EcantextentExc const&) Unexecuted instantiation: Iex_2_5::EinvaltimeExc::EinvaltimeExc(Iex_2_5::EinvaltimeExc const&) Unexecuted instantiation: Iex_2_5::EdestroyedExc::EdestroyedExc(Iex_2_5::EdestroyedExc const&) Unexecuted instantiation: Iex_2_5::OverflowExc::OverflowExc(Iex_2_5::OverflowExc const&) Unexecuted instantiation: Iex_2_5::UnderflowExc::UnderflowExc(Iex_2_5::UnderflowExc const&) Unexecuted instantiation: Iex_2_5::DivzeroExc::DivzeroExc(Iex_2_5::DivzeroExc const&) Unexecuted instantiation: Iex_2_5::InexactExc::InexactExc(Iex_2_5::InexactExc const&) Unexecuted instantiation: Iex_2_5::InvalidFpOpExc::InvalidFpOpExc(Iex_2_5::InvalidFpOpExc const&) |
156 | 0 | exp name::name (name &&other) throw() : base (other) {} \ Unexecuted instantiation: Imath_2_5::NullVecExc::NullVecExc(Imath_2_5::NullVecExc&&) Unexecuted instantiation: Imath_2_5::InfPointExc::InfPointExc(Imath_2_5::InfPointExc&&) Unexecuted instantiation: Imath_2_5::NullQuatExc::NullQuatExc(Imath_2_5::NullQuatExc&&) Unexecuted instantiation: Imath_2_5::SingMatrixExc::SingMatrixExc(Imath_2_5::SingMatrixExc&&) Unexecuted instantiation: Imath_2_5::ZeroScaleExc::ZeroScaleExc(Imath_2_5::ZeroScaleExc&&) Unexecuted instantiation: Imath_2_5::IntVecNormalizeExc::IntVecNormalizeExc(Imath_2_5::IntVecNormalizeExc&&) Unexecuted instantiation: Iex_2_5::ArgExc::ArgExc(Iex_2_5::ArgExc&&) Unexecuted instantiation: Iex_2_5::LogicExc::LogicExc(Iex_2_5::LogicExc&&) Unexecuted instantiation: Iex_2_5::InputExc::InputExc(Iex_2_5::InputExc&&) Unexecuted instantiation: Iex_2_5::IoExc::IoExc(Iex_2_5::IoExc&&) Unexecuted instantiation: Iex_2_5::MathExc::MathExc(Iex_2_5::MathExc&&) Unexecuted instantiation: Iex_2_5::ErrnoExc::ErrnoExc(Iex_2_5::ErrnoExc&&) Unexecuted instantiation: Iex_2_5::NoImplExc::NoImplExc(Iex_2_5::NoImplExc&&) Unexecuted instantiation: Iex_2_5::NullExc::NullExc(Iex_2_5::NullExc&&) Unexecuted instantiation: Iex_2_5::TypeExc::TypeExc(Iex_2_5::TypeExc&&) Unexecuted instantiation: Iex_2_5::EpermExc::EpermExc(Iex_2_5::EpermExc&&) Unexecuted instantiation: Iex_2_5::EnoentExc::EnoentExc(Iex_2_5::EnoentExc&&) Unexecuted instantiation: Iex_2_5::EsrchExc::EsrchExc(Iex_2_5::EsrchExc&&) Unexecuted instantiation: Iex_2_5::EintrExc::EintrExc(Iex_2_5::EintrExc&&) Unexecuted instantiation: Iex_2_5::EioExc::EioExc(Iex_2_5::EioExc&&) Unexecuted instantiation: Iex_2_5::EnxioExc::EnxioExc(Iex_2_5::EnxioExc&&) Unexecuted instantiation: Iex_2_5::E2bigExc::E2bigExc(Iex_2_5::E2bigExc&&) Unexecuted instantiation: Iex_2_5::EnoexecExc::EnoexecExc(Iex_2_5::EnoexecExc&&) Unexecuted instantiation: Iex_2_5::EbadfExc::EbadfExc(Iex_2_5::EbadfExc&&) Unexecuted instantiation: Iex_2_5::EchildExc::EchildExc(Iex_2_5::EchildExc&&) Unexecuted instantiation: Iex_2_5::EagainExc::EagainExc(Iex_2_5::EagainExc&&) Unexecuted instantiation: Iex_2_5::EnomemExc::EnomemExc(Iex_2_5::EnomemExc&&) Unexecuted instantiation: Iex_2_5::EaccesExc::EaccesExc(Iex_2_5::EaccesExc&&) Unexecuted instantiation: Iex_2_5::EfaultExc::EfaultExc(Iex_2_5::EfaultExc&&) Unexecuted instantiation: Iex_2_5::EnotblkExc::EnotblkExc(Iex_2_5::EnotblkExc&&) Unexecuted instantiation: Iex_2_5::EbusyExc::EbusyExc(Iex_2_5::EbusyExc&&) Unexecuted instantiation: Iex_2_5::EexistExc::EexistExc(Iex_2_5::EexistExc&&) Unexecuted instantiation: Iex_2_5::ExdevExc::ExdevExc(Iex_2_5::ExdevExc&&) Unexecuted instantiation: Iex_2_5::EnodevExc::EnodevExc(Iex_2_5::EnodevExc&&) Unexecuted instantiation: Iex_2_5::EnotdirExc::EnotdirExc(Iex_2_5::EnotdirExc&&) Unexecuted instantiation: Iex_2_5::EisdirExc::EisdirExc(Iex_2_5::EisdirExc&&) Unexecuted instantiation: Iex_2_5::EinvalExc::EinvalExc(Iex_2_5::EinvalExc&&) Unexecuted instantiation: Iex_2_5::EnfileExc::EnfileExc(Iex_2_5::EnfileExc&&) Unexecuted instantiation: Iex_2_5::EmfileExc::EmfileExc(Iex_2_5::EmfileExc&&) Unexecuted instantiation: Iex_2_5::EnottyExc::EnottyExc(Iex_2_5::EnottyExc&&) Unexecuted instantiation: Iex_2_5::EtxtbsyExc::EtxtbsyExc(Iex_2_5::EtxtbsyExc&&) Unexecuted instantiation: Iex_2_5::EfbigExc::EfbigExc(Iex_2_5::EfbigExc&&) Unexecuted instantiation: Iex_2_5::EnospcExc::EnospcExc(Iex_2_5::EnospcExc&&) Unexecuted instantiation: Iex_2_5::EspipeExc::EspipeExc(Iex_2_5::EspipeExc&&) Unexecuted instantiation: Iex_2_5::ErofsExc::ErofsExc(Iex_2_5::ErofsExc&&) Unexecuted instantiation: Iex_2_5::EmlinkExc::EmlinkExc(Iex_2_5::EmlinkExc&&) Unexecuted instantiation: Iex_2_5::EpipeExc::EpipeExc(Iex_2_5::EpipeExc&&) Unexecuted instantiation: Iex_2_5::EdomExc::EdomExc(Iex_2_5::EdomExc&&) Unexecuted instantiation: Iex_2_5::ErangeExc::ErangeExc(Iex_2_5::ErangeExc&&) Unexecuted instantiation: Iex_2_5::EnomsgExc::EnomsgExc(Iex_2_5::EnomsgExc&&) Unexecuted instantiation: Iex_2_5::EidrmExc::EidrmExc(Iex_2_5::EidrmExc&&) Unexecuted instantiation: Iex_2_5::EchrngExc::EchrngExc(Iex_2_5::EchrngExc&&) Unexecuted instantiation: Iex_2_5::El2nsyncExc::El2nsyncExc(Iex_2_5::El2nsyncExc&&) Unexecuted instantiation: Iex_2_5::El3hltExc::El3hltExc(Iex_2_5::El3hltExc&&) Unexecuted instantiation: Iex_2_5::El3rstExc::El3rstExc(Iex_2_5::El3rstExc&&) Unexecuted instantiation: Iex_2_5::ElnrngExc::ElnrngExc(Iex_2_5::ElnrngExc&&) Unexecuted instantiation: Iex_2_5::EunatchExc::EunatchExc(Iex_2_5::EunatchExc&&) Unexecuted instantiation: Iex_2_5::EnocsiExc::EnocsiExc(Iex_2_5::EnocsiExc&&) Unexecuted instantiation: Iex_2_5::El2hltExc::El2hltExc(Iex_2_5::El2hltExc&&) Unexecuted instantiation: Iex_2_5::EdeadlkExc::EdeadlkExc(Iex_2_5::EdeadlkExc&&) Unexecuted instantiation: Iex_2_5::EnolckExc::EnolckExc(Iex_2_5::EnolckExc&&) Unexecuted instantiation: Iex_2_5::EbadeExc::EbadeExc(Iex_2_5::EbadeExc&&) Unexecuted instantiation: Iex_2_5::EbadrExc::EbadrExc(Iex_2_5::EbadrExc&&) Unexecuted instantiation: Iex_2_5::ExfullExc::ExfullExc(Iex_2_5::ExfullExc&&) Unexecuted instantiation: Iex_2_5::EnoanoExc::EnoanoExc(Iex_2_5::EnoanoExc&&) Unexecuted instantiation: Iex_2_5::EbadrqcExc::EbadrqcExc(Iex_2_5::EbadrqcExc&&) Unexecuted instantiation: Iex_2_5::EbadsltExc::EbadsltExc(Iex_2_5::EbadsltExc&&) Unexecuted instantiation: Iex_2_5::EdeadlockExc::EdeadlockExc(Iex_2_5::EdeadlockExc&&) Unexecuted instantiation: Iex_2_5::EbfontExc::EbfontExc(Iex_2_5::EbfontExc&&) Unexecuted instantiation: Iex_2_5::EnostrExc::EnostrExc(Iex_2_5::EnostrExc&&) Unexecuted instantiation: Iex_2_5::EnodataExc::EnodataExc(Iex_2_5::EnodataExc&&) Unexecuted instantiation: Iex_2_5::EtimeExc::EtimeExc(Iex_2_5::EtimeExc&&) Unexecuted instantiation: Iex_2_5::EnosrExc::EnosrExc(Iex_2_5::EnosrExc&&) Unexecuted instantiation: Iex_2_5::EnonetExc::EnonetExc(Iex_2_5::EnonetExc&&) Unexecuted instantiation: Iex_2_5::EnopkgExc::EnopkgExc(Iex_2_5::EnopkgExc&&) Unexecuted instantiation: Iex_2_5::EremoteExc::EremoteExc(Iex_2_5::EremoteExc&&) Unexecuted instantiation: Iex_2_5::EnolinkExc::EnolinkExc(Iex_2_5::EnolinkExc&&) Unexecuted instantiation: Iex_2_5::EadvExc::EadvExc(Iex_2_5::EadvExc&&) Unexecuted instantiation: Iex_2_5::EsrmntExc::EsrmntExc(Iex_2_5::EsrmntExc&&) Unexecuted instantiation: Iex_2_5::EcommExc::EcommExc(Iex_2_5::EcommExc&&) Unexecuted instantiation: Iex_2_5::EprotoExc::EprotoExc(Iex_2_5::EprotoExc&&) Unexecuted instantiation: Iex_2_5::EmultihopExc::EmultihopExc(Iex_2_5::EmultihopExc&&) Unexecuted instantiation: Iex_2_5::EbadmsgExc::EbadmsgExc(Iex_2_5::EbadmsgExc&&) Unexecuted instantiation: Iex_2_5::EnametoolongExc::EnametoolongExc(Iex_2_5::EnametoolongExc&&) Unexecuted instantiation: Iex_2_5::EoverflowExc::EoverflowExc(Iex_2_5::EoverflowExc&&) Unexecuted instantiation: Iex_2_5::EnotuniqExc::EnotuniqExc(Iex_2_5::EnotuniqExc&&) Unexecuted instantiation: Iex_2_5::EbadfdExc::EbadfdExc(Iex_2_5::EbadfdExc&&) Unexecuted instantiation: Iex_2_5::EremchgExc::EremchgExc(Iex_2_5::EremchgExc&&) Unexecuted instantiation: Iex_2_5::ElibaccExc::ElibaccExc(Iex_2_5::ElibaccExc&&) Unexecuted instantiation: Iex_2_5::ElibbadExc::ElibbadExc(Iex_2_5::ElibbadExc&&) Unexecuted instantiation: Iex_2_5::ElibscnExc::ElibscnExc(Iex_2_5::ElibscnExc&&) Unexecuted instantiation: Iex_2_5::ElibmaxExc::ElibmaxExc(Iex_2_5::ElibmaxExc&&) Unexecuted instantiation: Iex_2_5::ElibexecExc::ElibexecExc(Iex_2_5::ElibexecExc&&) Unexecuted instantiation: Iex_2_5::EilseqExc::EilseqExc(Iex_2_5::EilseqExc&&) Unexecuted instantiation: Iex_2_5::EnosysExc::EnosysExc(Iex_2_5::EnosysExc&&) Unexecuted instantiation: Iex_2_5::EloopExc::EloopExc(Iex_2_5::EloopExc&&) Unexecuted instantiation: Iex_2_5::ErestartExc::ErestartExc(Iex_2_5::ErestartExc&&) Unexecuted instantiation: Iex_2_5::EstrpipeExc::EstrpipeExc(Iex_2_5::EstrpipeExc&&) Unexecuted instantiation: Iex_2_5::EnotemptyExc::EnotemptyExc(Iex_2_5::EnotemptyExc&&) Unexecuted instantiation: Iex_2_5::EusersExc::EusersExc(Iex_2_5::EusersExc&&) Unexecuted instantiation: Iex_2_5::EnotsockExc::EnotsockExc(Iex_2_5::EnotsockExc&&) Unexecuted instantiation: Iex_2_5::EdestaddrreqExc::EdestaddrreqExc(Iex_2_5::EdestaddrreqExc&&) Unexecuted instantiation: Iex_2_5::EmsgsizeExc::EmsgsizeExc(Iex_2_5::EmsgsizeExc&&) Unexecuted instantiation: Iex_2_5::EprototypeExc::EprototypeExc(Iex_2_5::EprototypeExc&&) Unexecuted instantiation: Iex_2_5::EnoprotooptExc::EnoprotooptExc(Iex_2_5::EnoprotooptExc&&) Unexecuted instantiation: Iex_2_5::EprotonosupportExc::EprotonosupportExc(Iex_2_5::EprotonosupportExc&&) Unexecuted instantiation: Iex_2_5::EsocktnosupportExc::EsocktnosupportExc(Iex_2_5::EsocktnosupportExc&&) Unexecuted instantiation: Iex_2_5::EopnotsuppExc::EopnotsuppExc(Iex_2_5::EopnotsuppExc&&) Unexecuted instantiation: Iex_2_5::EpfnosupportExc::EpfnosupportExc(Iex_2_5::EpfnosupportExc&&) Unexecuted instantiation: Iex_2_5::EafnosupportExc::EafnosupportExc(Iex_2_5::EafnosupportExc&&) Unexecuted instantiation: Iex_2_5::EaddrinuseExc::EaddrinuseExc(Iex_2_5::EaddrinuseExc&&) Unexecuted instantiation: Iex_2_5::EaddrnotavailExc::EaddrnotavailExc(Iex_2_5::EaddrnotavailExc&&) Unexecuted instantiation: Iex_2_5::EnetdownExc::EnetdownExc(Iex_2_5::EnetdownExc&&) Unexecuted instantiation: Iex_2_5::EnetunreachExc::EnetunreachExc(Iex_2_5::EnetunreachExc&&) Unexecuted instantiation: Iex_2_5::EnetresetExc::EnetresetExc(Iex_2_5::EnetresetExc&&) Unexecuted instantiation: Iex_2_5::EconnabortedExc::EconnabortedExc(Iex_2_5::EconnabortedExc&&) Unexecuted instantiation: Iex_2_5::EconnresetExc::EconnresetExc(Iex_2_5::EconnresetExc&&) Unexecuted instantiation: Iex_2_5::EnobufsExc::EnobufsExc(Iex_2_5::EnobufsExc&&) Unexecuted instantiation: Iex_2_5::EisconnExc::EisconnExc(Iex_2_5::EisconnExc&&) Unexecuted instantiation: Iex_2_5::EnotconnExc::EnotconnExc(Iex_2_5::EnotconnExc&&) Unexecuted instantiation: Iex_2_5::EshutdownExc::EshutdownExc(Iex_2_5::EshutdownExc&&) Unexecuted instantiation: Iex_2_5::EtoomanyrefsExc::EtoomanyrefsExc(Iex_2_5::EtoomanyrefsExc&&) Unexecuted instantiation: Iex_2_5::EtimedoutExc::EtimedoutExc(Iex_2_5::EtimedoutExc&&) Unexecuted instantiation: Iex_2_5::EconnrefusedExc::EconnrefusedExc(Iex_2_5::EconnrefusedExc&&) Unexecuted instantiation: Iex_2_5::EhostdownExc::EhostdownExc(Iex_2_5::EhostdownExc&&) Unexecuted instantiation: Iex_2_5::EhostunreachExc::EhostunreachExc(Iex_2_5::EhostunreachExc&&) Unexecuted instantiation: Iex_2_5::EalreadyExc::EalreadyExc(Iex_2_5::EalreadyExc&&) Unexecuted instantiation: Iex_2_5::EinprogressExc::EinprogressExc(Iex_2_5::EinprogressExc&&) Unexecuted instantiation: Iex_2_5::EstaleExc::EstaleExc(Iex_2_5::EstaleExc&&) Unexecuted instantiation: Iex_2_5::EioresidExc::EioresidExc(Iex_2_5::EioresidExc&&) Unexecuted instantiation: Iex_2_5::EucleanExc::EucleanExc(Iex_2_5::EucleanExc&&) Unexecuted instantiation: Iex_2_5::EnotnamExc::EnotnamExc(Iex_2_5::EnotnamExc&&) Unexecuted instantiation: Iex_2_5::EnavailExc::EnavailExc(Iex_2_5::EnavailExc&&) Unexecuted instantiation: Iex_2_5::EisnamExc::EisnamExc(Iex_2_5::EisnamExc&&) Unexecuted instantiation: Iex_2_5::EremoteioExc::EremoteioExc(Iex_2_5::EremoteioExc&&) Unexecuted instantiation: Iex_2_5::EinitExc::EinitExc(Iex_2_5::EinitExc&&) Unexecuted instantiation: Iex_2_5::EremdevExc::EremdevExc(Iex_2_5::EremdevExc&&) Unexecuted instantiation: Iex_2_5::EcanceledExc::EcanceledExc(Iex_2_5::EcanceledExc&&) Unexecuted instantiation: Iex_2_5::EnolimfileExc::EnolimfileExc(Iex_2_5::EnolimfileExc&&) Unexecuted instantiation: Iex_2_5::EproclimExc::EproclimExc(Iex_2_5::EproclimExc&&) Unexecuted instantiation: Iex_2_5::EdisjointExc::EdisjointExc(Iex_2_5::EdisjointExc&&) Unexecuted instantiation: Iex_2_5::EnologinExc::EnologinExc(Iex_2_5::EnologinExc&&) Unexecuted instantiation: Iex_2_5::EloginlimExc::EloginlimExc(Iex_2_5::EloginlimExc&&) Unexecuted instantiation: Iex_2_5::EgrouploopExc::EgrouploopExc(Iex_2_5::EgrouploopExc&&) Unexecuted instantiation: Iex_2_5::EnoattachExc::EnoattachExc(Iex_2_5::EnoattachExc&&) Unexecuted instantiation: Iex_2_5::EnotsupExc::EnotsupExc(Iex_2_5::EnotsupExc&&) Unexecuted instantiation: Iex_2_5::EnoattrExc::EnoattrExc(Iex_2_5::EnoattrExc&&) Unexecuted instantiation: Iex_2_5::EdircorruptedExc::EdircorruptedExc(Iex_2_5::EdircorruptedExc&&) Unexecuted instantiation: Iex_2_5::EdquotExc::EdquotExc(Iex_2_5::EdquotExc&&) Unexecuted instantiation: Iex_2_5::EnfsremoteExc::EnfsremoteExc(Iex_2_5::EnfsremoteExc&&) Unexecuted instantiation: Iex_2_5::EcontrollerExc::EcontrollerExc(Iex_2_5::EcontrollerExc&&) Unexecuted instantiation: Iex_2_5::EnotcontrollerExc::EnotcontrollerExc(Iex_2_5::EnotcontrollerExc&&) Unexecuted instantiation: Iex_2_5::EenqueuedExc::EenqueuedExc(Iex_2_5::EenqueuedExc&&) Unexecuted instantiation: Iex_2_5::EnotenqueuedExc::EnotenqueuedExc(Iex_2_5::EnotenqueuedExc&&) Unexecuted instantiation: Iex_2_5::EjoinedExc::EjoinedExc(Iex_2_5::EjoinedExc&&) Unexecuted instantiation: Iex_2_5::EnotjoinedExc::EnotjoinedExc(Iex_2_5::EnotjoinedExc&&) Unexecuted instantiation: Iex_2_5::EnoprocExc::EnoprocExc(Iex_2_5::EnoprocExc&&) Unexecuted instantiation: Iex_2_5::EmustrunExc::EmustrunExc(Iex_2_5::EmustrunExc&&) Unexecuted instantiation: Iex_2_5::EnotstoppedExc::EnotstoppedExc(Iex_2_5::EnotstoppedExc&&) Unexecuted instantiation: Iex_2_5::EclockcpuExc::EclockcpuExc(Iex_2_5::EclockcpuExc&&) Unexecuted instantiation: Iex_2_5::EinvalstateExc::EinvalstateExc(Iex_2_5::EinvalstateExc&&) Unexecuted instantiation: Iex_2_5::EnoexistExc::EnoexistExc(Iex_2_5::EnoexistExc&&) Unexecuted instantiation: Iex_2_5::EendofminorExc::EendofminorExc(Iex_2_5::EendofminorExc&&) Unexecuted instantiation: Iex_2_5::EbufsizeExc::EbufsizeExc(Iex_2_5::EbufsizeExc&&) Unexecuted instantiation: Iex_2_5::EemptyExc::EemptyExc(Iex_2_5::EemptyExc&&) Unexecuted instantiation: Iex_2_5::EnointrgroupExc::EnointrgroupExc(Iex_2_5::EnointrgroupExc&&) Unexecuted instantiation: Iex_2_5::EinvalmodeExc::EinvalmodeExc(Iex_2_5::EinvalmodeExc&&) Unexecuted instantiation: Iex_2_5::EcantextentExc::EcantextentExc(Iex_2_5::EcantextentExc&&) Unexecuted instantiation: Iex_2_5::EinvaltimeExc::EinvaltimeExc(Iex_2_5::EinvaltimeExc&&) Unexecuted instantiation: Iex_2_5::EdestroyedExc::EdestroyedExc(Iex_2_5::EdestroyedExc&&) Unexecuted instantiation: Iex_2_5::OverflowExc::OverflowExc(Iex_2_5::OverflowExc&&) Unexecuted instantiation: Iex_2_5::UnderflowExc::UnderflowExc(Iex_2_5::UnderflowExc&&) Unexecuted instantiation: Iex_2_5::DivzeroExc::DivzeroExc(Iex_2_5::DivzeroExc&&) Unexecuted instantiation: Iex_2_5::InexactExc::InexactExc(Iex_2_5::InexactExc&&) Unexecuted instantiation: Iex_2_5::InvalidFpOpExc::InvalidFpOpExc(Iex_2_5::InvalidFpOpExc&&) |
157 | 0 | exp name& name::operator = (name &other) throw() { base::operator=(other); return *this; } \ Unexecuted instantiation: Imath_2_5::NullVecExc::operator=(Imath_2_5::NullVecExc&) Unexecuted instantiation: Imath_2_5::InfPointExc::operator=(Imath_2_5::InfPointExc&) Unexecuted instantiation: Imath_2_5::NullQuatExc::operator=(Imath_2_5::NullQuatExc&) Unexecuted instantiation: Imath_2_5::SingMatrixExc::operator=(Imath_2_5::SingMatrixExc&) Unexecuted instantiation: Imath_2_5::ZeroScaleExc::operator=(Imath_2_5::ZeroScaleExc&) Unexecuted instantiation: Imath_2_5::IntVecNormalizeExc::operator=(Imath_2_5::IntVecNormalizeExc&) Unexecuted instantiation: Iex_2_5::ArgExc::operator=(Iex_2_5::ArgExc&) Unexecuted instantiation: Iex_2_5::LogicExc::operator=(Iex_2_5::LogicExc&) Unexecuted instantiation: Iex_2_5::InputExc::operator=(Iex_2_5::InputExc&) Unexecuted instantiation: Iex_2_5::IoExc::operator=(Iex_2_5::IoExc&) Unexecuted instantiation: Iex_2_5::MathExc::operator=(Iex_2_5::MathExc&) Unexecuted instantiation: Iex_2_5::ErrnoExc::operator=(Iex_2_5::ErrnoExc&) Unexecuted instantiation: Iex_2_5::NoImplExc::operator=(Iex_2_5::NoImplExc&) Unexecuted instantiation: Iex_2_5::NullExc::operator=(Iex_2_5::NullExc&) Unexecuted instantiation: Iex_2_5::TypeExc::operator=(Iex_2_5::TypeExc&) Unexecuted instantiation: Iex_2_5::EpermExc::operator=(Iex_2_5::EpermExc&) Unexecuted instantiation: Iex_2_5::EnoentExc::operator=(Iex_2_5::EnoentExc&) Unexecuted instantiation: Iex_2_5::EsrchExc::operator=(Iex_2_5::EsrchExc&) Unexecuted instantiation: Iex_2_5::EintrExc::operator=(Iex_2_5::EintrExc&) Unexecuted instantiation: Iex_2_5::EioExc::operator=(Iex_2_5::EioExc&) Unexecuted instantiation: Iex_2_5::EnxioExc::operator=(Iex_2_5::EnxioExc&) Unexecuted instantiation: Iex_2_5::E2bigExc::operator=(Iex_2_5::E2bigExc&) Unexecuted instantiation: Iex_2_5::EnoexecExc::operator=(Iex_2_5::EnoexecExc&) Unexecuted instantiation: Iex_2_5::EbadfExc::operator=(Iex_2_5::EbadfExc&) Unexecuted instantiation: Iex_2_5::EchildExc::operator=(Iex_2_5::EchildExc&) Unexecuted instantiation: Iex_2_5::EagainExc::operator=(Iex_2_5::EagainExc&) Unexecuted instantiation: Iex_2_5::EnomemExc::operator=(Iex_2_5::EnomemExc&) Unexecuted instantiation: Iex_2_5::EaccesExc::operator=(Iex_2_5::EaccesExc&) Unexecuted instantiation: Iex_2_5::EfaultExc::operator=(Iex_2_5::EfaultExc&) Unexecuted instantiation: Iex_2_5::EnotblkExc::operator=(Iex_2_5::EnotblkExc&) Unexecuted instantiation: Iex_2_5::EbusyExc::operator=(Iex_2_5::EbusyExc&) Unexecuted instantiation: Iex_2_5::EexistExc::operator=(Iex_2_5::EexistExc&) Unexecuted instantiation: Iex_2_5::ExdevExc::operator=(Iex_2_5::ExdevExc&) Unexecuted instantiation: Iex_2_5::EnodevExc::operator=(Iex_2_5::EnodevExc&) Unexecuted instantiation: Iex_2_5::EnotdirExc::operator=(Iex_2_5::EnotdirExc&) Unexecuted instantiation: Iex_2_5::EisdirExc::operator=(Iex_2_5::EisdirExc&) Unexecuted instantiation: Iex_2_5::EinvalExc::operator=(Iex_2_5::EinvalExc&) Unexecuted instantiation: Iex_2_5::EnfileExc::operator=(Iex_2_5::EnfileExc&) Unexecuted instantiation: Iex_2_5::EmfileExc::operator=(Iex_2_5::EmfileExc&) Unexecuted instantiation: Iex_2_5::EnottyExc::operator=(Iex_2_5::EnottyExc&) Unexecuted instantiation: Iex_2_5::EtxtbsyExc::operator=(Iex_2_5::EtxtbsyExc&) Unexecuted instantiation: Iex_2_5::EfbigExc::operator=(Iex_2_5::EfbigExc&) Unexecuted instantiation: Iex_2_5::EnospcExc::operator=(Iex_2_5::EnospcExc&) Unexecuted instantiation: Iex_2_5::EspipeExc::operator=(Iex_2_5::EspipeExc&) Unexecuted instantiation: Iex_2_5::ErofsExc::operator=(Iex_2_5::ErofsExc&) Unexecuted instantiation: Iex_2_5::EmlinkExc::operator=(Iex_2_5::EmlinkExc&) Unexecuted instantiation: Iex_2_5::EpipeExc::operator=(Iex_2_5::EpipeExc&) Unexecuted instantiation: Iex_2_5::EdomExc::operator=(Iex_2_5::EdomExc&) Unexecuted instantiation: Iex_2_5::ErangeExc::operator=(Iex_2_5::ErangeExc&) Unexecuted instantiation: Iex_2_5::EnomsgExc::operator=(Iex_2_5::EnomsgExc&) Unexecuted instantiation: Iex_2_5::EidrmExc::operator=(Iex_2_5::EidrmExc&) Unexecuted instantiation: Iex_2_5::EchrngExc::operator=(Iex_2_5::EchrngExc&) Unexecuted instantiation: Iex_2_5::El2nsyncExc::operator=(Iex_2_5::El2nsyncExc&) Unexecuted instantiation: Iex_2_5::El3hltExc::operator=(Iex_2_5::El3hltExc&) Unexecuted instantiation: Iex_2_5::El3rstExc::operator=(Iex_2_5::El3rstExc&) Unexecuted instantiation: Iex_2_5::ElnrngExc::operator=(Iex_2_5::ElnrngExc&) Unexecuted instantiation: Iex_2_5::EunatchExc::operator=(Iex_2_5::EunatchExc&) Unexecuted instantiation: Iex_2_5::EnocsiExc::operator=(Iex_2_5::EnocsiExc&) Unexecuted instantiation: Iex_2_5::El2hltExc::operator=(Iex_2_5::El2hltExc&) Unexecuted instantiation: Iex_2_5::EdeadlkExc::operator=(Iex_2_5::EdeadlkExc&) Unexecuted instantiation: Iex_2_5::EnolckExc::operator=(Iex_2_5::EnolckExc&) Unexecuted instantiation: Iex_2_5::EbadeExc::operator=(Iex_2_5::EbadeExc&) Unexecuted instantiation: Iex_2_5::EbadrExc::operator=(Iex_2_5::EbadrExc&) Unexecuted instantiation: Iex_2_5::ExfullExc::operator=(Iex_2_5::ExfullExc&) Unexecuted instantiation: Iex_2_5::EnoanoExc::operator=(Iex_2_5::EnoanoExc&) Unexecuted instantiation: Iex_2_5::EbadrqcExc::operator=(Iex_2_5::EbadrqcExc&) Unexecuted instantiation: Iex_2_5::EbadsltExc::operator=(Iex_2_5::EbadsltExc&) Unexecuted instantiation: Iex_2_5::EdeadlockExc::operator=(Iex_2_5::EdeadlockExc&) Unexecuted instantiation: Iex_2_5::EbfontExc::operator=(Iex_2_5::EbfontExc&) Unexecuted instantiation: Iex_2_5::EnostrExc::operator=(Iex_2_5::EnostrExc&) Unexecuted instantiation: Iex_2_5::EnodataExc::operator=(Iex_2_5::EnodataExc&) Unexecuted instantiation: Iex_2_5::EtimeExc::operator=(Iex_2_5::EtimeExc&) Unexecuted instantiation: Iex_2_5::EnosrExc::operator=(Iex_2_5::EnosrExc&) Unexecuted instantiation: Iex_2_5::EnonetExc::operator=(Iex_2_5::EnonetExc&) Unexecuted instantiation: Iex_2_5::EnopkgExc::operator=(Iex_2_5::EnopkgExc&) Unexecuted instantiation: Iex_2_5::EremoteExc::operator=(Iex_2_5::EremoteExc&) Unexecuted instantiation: Iex_2_5::EnolinkExc::operator=(Iex_2_5::EnolinkExc&) Unexecuted instantiation: Iex_2_5::EadvExc::operator=(Iex_2_5::EadvExc&) Unexecuted instantiation: Iex_2_5::EsrmntExc::operator=(Iex_2_5::EsrmntExc&) Unexecuted instantiation: Iex_2_5::EcommExc::operator=(Iex_2_5::EcommExc&) Unexecuted instantiation: Iex_2_5::EprotoExc::operator=(Iex_2_5::EprotoExc&) Unexecuted instantiation: Iex_2_5::EmultihopExc::operator=(Iex_2_5::EmultihopExc&) Unexecuted instantiation: Iex_2_5::EbadmsgExc::operator=(Iex_2_5::EbadmsgExc&) Unexecuted instantiation: Iex_2_5::EnametoolongExc::operator=(Iex_2_5::EnametoolongExc&) Unexecuted instantiation: Iex_2_5::EoverflowExc::operator=(Iex_2_5::EoverflowExc&) Unexecuted instantiation: Iex_2_5::EnotuniqExc::operator=(Iex_2_5::EnotuniqExc&) Unexecuted instantiation: Iex_2_5::EbadfdExc::operator=(Iex_2_5::EbadfdExc&) Unexecuted instantiation: Iex_2_5::EremchgExc::operator=(Iex_2_5::EremchgExc&) Unexecuted instantiation: Iex_2_5::ElibaccExc::operator=(Iex_2_5::ElibaccExc&) Unexecuted instantiation: Iex_2_5::ElibbadExc::operator=(Iex_2_5::ElibbadExc&) Unexecuted instantiation: Iex_2_5::ElibscnExc::operator=(Iex_2_5::ElibscnExc&) Unexecuted instantiation: Iex_2_5::ElibmaxExc::operator=(Iex_2_5::ElibmaxExc&) Unexecuted instantiation: Iex_2_5::ElibexecExc::operator=(Iex_2_5::ElibexecExc&) Unexecuted instantiation: Iex_2_5::EilseqExc::operator=(Iex_2_5::EilseqExc&) Unexecuted instantiation: Iex_2_5::EnosysExc::operator=(Iex_2_5::EnosysExc&) Unexecuted instantiation: Iex_2_5::EloopExc::operator=(Iex_2_5::EloopExc&) Unexecuted instantiation: Iex_2_5::ErestartExc::operator=(Iex_2_5::ErestartExc&) Unexecuted instantiation: Iex_2_5::EstrpipeExc::operator=(Iex_2_5::EstrpipeExc&) Unexecuted instantiation: Iex_2_5::EnotemptyExc::operator=(Iex_2_5::EnotemptyExc&) Unexecuted instantiation: Iex_2_5::EusersExc::operator=(Iex_2_5::EusersExc&) Unexecuted instantiation: Iex_2_5::EnotsockExc::operator=(Iex_2_5::EnotsockExc&) Unexecuted instantiation: Iex_2_5::EdestaddrreqExc::operator=(Iex_2_5::EdestaddrreqExc&) Unexecuted instantiation: Iex_2_5::EmsgsizeExc::operator=(Iex_2_5::EmsgsizeExc&) Unexecuted instantiation: Iex_2_5::EprototypeExc::operator=(Iex_2_5::EprototypeExc&) Unexecuted instantiation: Iex_2_5::EnoprotooptExc::operator=(Iex_2_5::EnoprotooptExc&) Unexecuted instantiation: Iex_2_5::EprotonosupportExc::operator=(Iex_2_5::EprotonosupportExc&) Unexecuted instantiation: Iex_2_5::EsocktnosupportExc::operator=(Iex_2_5::EsocktnosupportExc&) Unexecuted instantiation: Iex_2_5::EopnotsuppExc::operator=(Iex_2_5::EopnotsuppExc&) Unexecuted instantiation: Iex_2_5::EpfnosupportExc::operator=(Iex_2_5::EpfnosupportExc&) Unexecuted instantiation: Iex_2_5::EafnosupportExc::operator=(Iex_2_5::EafnosupportExc&) Unexecuted instantiation: Iex_2_5::EaddrinuseExc::operator=(Iex_2_5::EaddrinuseExc&) Unexecuted instantiation: Iex_2_5::EaddrnotavailExc::operator=(Iex_2_5::EaddrnotavailExc&) Unexecuted instantiation: Iex_2_5::EnetdownExc::operator=(Iex_2_5::EnetdownExc&) Unexecuted instantiation: Iex_2_5::EnetunreachExc::operator=(Iex_2_5::EnetunreachExc&) Unexecuted instantiation: Iex_2_5::EnetresetExc::operator=(Iex_2_5::EnetresetExc&) Unexecuted instantiation: Iex_2_5::EconnabortedExc::operator=(Iex_2_5::EconnabortedExc&) Unexecuted instantiation: Iex_2_5::EconnresetExc::operator=(Iex_2_5::EconnresetExc&) Unexecuted instantiation: Iex_2_5::EnobufsExc::operator=(Iex_2_5::EnobufsExc&) Unexecuted instantiation: Iex_2_5::EisconnExc::operator=(Iex_2_5::EisconnExc&) Unexecuted instantiation: Iex_2_5::EnotconnExc::operator=(Iex_2_5::EnotconnExc&) Unexecuted instantiation: Iex_2_5::EshutdownExc::operator=(Iex_2_5::EshutdownExc&) Unexecuted instantiation: Iex_2_5::EtoomanyrefsExc::operator=(Iex_2_5::EtoomanyrefsExc&) Unexecuted instantiation: Iex_2_5::EtimedoutExc::operator=(Iex_2_5::EtimedoutExc&) Unexecuted instantiation: Iex_2_5::EconnrefusedExc::operator=(Iex_2_5::EconnrefusedExc&) Unexecuted instantiation: Iex_2_5::EhostdownExc::operator=(Iex_2_5::EhostdownExc&) Unexecuted instantiation: Iex_2_5::EhostunreachExc::operator=(Iex_2_5::EhostunreachExc&) Unexecuted instantiation: Iex_2_5::EalreadyExc::operator=(Iex_2_5::EalreadyExc&) Unexecuted instantiation: Iex_2_5::EinprogressExc::operator=(Iex_2_5::EinprogressExc&) Unexecuted instantiation: Iex_2_5::EstaleExc::operator=(Iex_2_5::EstaleExc&) Unexecuted instantiation: Iex_2_5::EioresidExc::operator=(Iex_2_5::EioresidExc&) Unexecuted instantiation: Iex_2_5::EucleanExc::operator=(Iex_2_5::EucleanExc&) Unexecuted instantiation: Iex_2_5::EnotnamExc::operator=(Iex_2_5::EnotnamExc&) Unexecuted instantiation: Iex_2_5::EnavailExc::operator=(Iex_2_5::EnavailExc&) Unexecuted instantiation: Iex_2_5::EisnamExc::operator=(Iex_2_5::EisnamExc&) Unexecuted instantiation: Iex_2_5::EremoteioExc::operator=(Iex_2_5::EremoteioExc&) Unexecuted instantiation: Iex_2_5::EinitExc::operator=(Iex_2_5::EinitExc&) Unexecuted instantiation: Iex_2_5::EremdevExc::operator=(Iex_2_5::EremdevExc&) Unexecuted instantiation: Iex_2_5::EcanceledExc::operator=(Iex_2_5::EcanceledExc&) Unexecuted instantiation: Iex_2_5::EnolimfileExc::operator=(Iex_2_5::EnolimfileExc&) Unexecuted instantiation: Iex_2_5::EproclimExc::operator=(Iex_2_5::EproclimExc&) Unexecuted instantiation: Iex_2_5::EdisjointExc::operator=(Iex_2_5::EdisjointExc&) Unexecuted instantiation: Iex_2_5::EnologinExc::operator=(Iex_2_5::EnologinExc&) Unexecuted instantiation: Iex_2_5::EloginlimExc::operator=(Iex_2_5::EloginlimExc&) Unexecuted instantiation: Iex_2_5::EgrouploopExc::operator=(Iex_2_5::EgrouploopExc&) Unexecuted instantiation: Iex_2_5::EnoattachExc::operator=(Iex_2_5::EnoattachExc&) Unexecuted instantiation: Iex_2_5::EnotsupExc::operator=(Iex_2_5::EnotsupExc&) Unexecuted instantiation: Iex_2_5::EnoattrExc::operator=(Iex_2_5::EnoattrExc&) Unexecuted instantiation: Iex_2_5::EdircorruptedExc::operator=(Iex_2_5::EdircorruptedExc&) Unexecuted instantiation: Iex_2_5::EdquotExc::operator=(Iex_2_5::EdquotExc&) Unexecuted instantiation: Iex_2_5::EnfsremoteExc::operator=(Iex_2_5::EnfsremoteExc&) Unexecuted instantiation: Iex_2_5::EcontrollerExc::operator=(Iex_2_5::EcontrollerExc&) Unexecuted instantiation: Iex_2_5::EnotcontrollerExc::operator=(Iex_2_5::EnotcontrollerExc&) Unexecuted instantiation: Iex_2_5::EenqueuedExc::operator=(Iex_2_5::EenqueuedExc&) Unexecuted instantiation: Iex_2_5::EnotenqueuedExc::operator=(Iex_2_5::EnotenqueuedExc&) Unexecuted instantiation: Iex_2_5::EjoinedExc::operator=(Iex_2_5::EjoinedExc&) Unexecuted instantiation: Iex_2_5::EnotjoinedExc::operator=(Iex_2_5::EnotjoinedExc&) Unexecuted instantiation: Iex_2_5::EnoprocExc::operator=(Iex_2_5::EnoprocExc&) Unexecuted instantiation: Iex_2_5::EmustrunExc::operator=(Iex_2_5::EmustrunExc&) Unexecuted instantiation: Iex_2_5::EnotstoppedExc::operator=(Iex_2_5::EnotstoppedExc&) Unexecuted instantiation: Iex_2_5::EclockcpuExc::operator=(Iex_2_5::EclockcpuExc&) Unexecuted instantiation: Iex_2_5::EinvalstateExc::operator=(Iex_2_5::EinvalstateExc&) Unexecuted instantiation: Iex_2_5::EnoexistExc::operator=(Iex_2_5::EnoexistExc&) Unexecuted instantiation: Iex_2_5::EendofminorExc::operator=(Iex_2_5::EendofminorExc&) Unexecuted instantiation: Iex_2_5::EbufsizeExc::operator=(Iex_2_5::EbufsizeExc&) Unexecuted instantiation: Iex_2_5::EemptyExc::operator=(Iex_2_5::EemptyExc&) Unexecuted instantiation: Iex_2_5::EnointrgroupExc::operator=(Iex_2_5::EnointrgroupExc&) Unexecuted instantiation: Iex_2_5::EinvalmodeExc::operator=(Iex_2_5::EinvalmodeExc&) Unexecuted instantiation: Iex_2_5::EcantextentExc::operator=(Iex_2_5::EcantextentExc&) Unexecuted instantiation: Iex_2_5::EinvaltimeExc::operator=(Iex_2_5::EinvaltimeExc&) Unexecuted instantiation: Iex_2_5::EdestroyedExc::operator=(Iex_2_5::EdestroyedExc&) Unexecuted instantiation: Iex_2_5::OverflowExc::operator=(Iex_2_5::OverflowExc&) Unexecuted instantiation: Iex_2_5::UnderflowExc::operator=(Iex_2_5::UnderflowExc&) Unexecuted instantiation: Iex_2_5::DivzeroExc::operator=(Iex_2_5::DivzeroExc&) Unexecuted instantiation: Iex_2_5::InexactExc::operator=(Iex_2_5::InexactExc&) Unexecuted instantiation: Iex_2_5::InvalidFpOpExc::operator=(Iex_2_5::InvalidFpOpExc&) |
158 | 0 | exp name& name::operator = (name &&other) throw() { base::operator=(other); return *this; } \ Unexecuted instantiation: Imath_2_5::NullVecExc::operator=(Imath_2_5::NullVecExc&&) Unexecuted instantiation: Imath_2_5::InfPointExc::operator=(Imath_2_5::InfPointExc&&) Unexecuted instantiation: Imath_2_5::NullQuatExc::operator=(Imath_2_5::NullQuatExc&&) Unexecuted instantiation: Imath_2_5::SingMatrixExc::operator=(Imath_2_5::SingMatrixExc&&) Unexecuted instantiation: Imath_2_5::ZeroScaleExc::operator=(Imath_2_5::ZeroScaleExc&&) Unexecuted instantiation: Imath_2_5::IntVecNormalizeExc::operator=(Imath_2_5::IntVecNormalizeExc&&) Unexecuted instantiation: Iex_2_5::ArgExc::operator=(Iex_2_5::ArgExc&&) Unexecuted instantiation: Iex_2_5::LogicExc::operator=(Iex_2_5::LogicExc&&) Unexecuted instantiation: Iex_2_5::InputExc::operator=(Iex_2_5::InputExc&&) Unexecuted instantiation: Iex_2_5::IoExc::operator=(Iex_2_5::IoExc&&) Unexecuted instantiation: Iex_2_5::MathExc::operator=(Iex_2_5::MathExc&&) Unexecuted instantiation: Iex_2_5::ErrnoExc::operator=(Iex_2_5::ErrnoExc&&) Unexecuted instantiation: Iex_2_5::NoImplExc::operator=(Iex_2_5::NoImplExc&&) Unexecuted instantiation: Iex_2_5::NullExc::operator=(Iex_2_5::NullExc&&) Unexecuted instantiation: Iex_2_5::TypeExc::operator=(Iex_2_5::TypeExc&&) Unexecuted instantiation: Iex_2_5::EpermExc::operator=(Iex_2_5::EpermExc&&) Unexecuted instantiation: Iex_2_5::EnoentExc::operator=(Iex_2_5::EnoentExc&&) Unexecuted instantiation: Iex_2_5::EsrchExc::operator=(Iex_2_5::EsrchExc&&) Unexecuted instantiation: Iex_2_5::EintrExc::operator=(Iex_2_5::EintrExc&&) Unexecuted instantiation: Iex_2_5::EioExc::operator=(Iex_2_5::EioExc&&) Unexecuted instantiation: Iex_2_5::EnxioExc::operator=(Iex_2_5::EnxioExc&&) Unexecuted instantiation: Iex_2_5::E2bigExc::operator=(Iex_2_5::E2bigExc&&) Unexecuted instantiation: Iex_2_5::EnoexecExc::operator=(Iex_2_5::EnoexecExc&&) Unexecuted instantiation: Iex_2_5::EbadfExc::operator=(Iex_2_5::EbadfExc&&) Unexecuted instantiation: Iex_2_5::EchildExc::operator=(Iex_2_5::EchildExc&&) Unexecuted instantiation: Iex_2_5::EagainExc::operator=(Iex_2_5::EagainExc&&) Unexecuted instantiation: Iex_2_5::EnomemExc::operator=(Iex_2_5::EnomemExc&&) Unexecuted instantiation: Iex_2_5::EaccesExc::operator=(Iex_2_5::EaccesExc&&) Unexecuted instantiation: Iex_2_5::EfaultExc::operator=(Iex_2_5::EfaultExc&&) Unexecuted instantiation: Iex_2_5::EnotblkExc::operator=(Iex_2_5::EnotblkExc&&) Unexecuted instantiation: Iex_2_5::EbusyExc::operator=(Iex_2_5::EbusyExc&&) Unexecuted instantiation: Iex_2_5::EexistExc::operator=(Iex_2_5::EexistExc&&) Unexecuted instantiation: Iex_2_5::ExdevExc::operator=(Iex_2_5::ExdevExc&&) Unexecuted instantiation: Iex_2_5::EnodevExc::operator=(Iex_2_5::EnodevExc&&) Unexecuted instantiation: Iex_2_5::EnotdirExc::operator=(Iex_2_5::EnotdirExc&&) Unexecuted instantiation: Iex_2_5::EisdirExc::operator=(Iex_2_5::EisdirExc&&) Unexecuted instantiation: Iex_2_5::EinvalExc::operator=(Iex_2_5::EinvalExc&&) Unexecuted instantiation: Iex_2_5::EnfileExc::operator=(Iex_2_5::EnfileExc&&) Unexecuted instantiation: Iex_2_5::EmfileExc::operator=(Iex_2_5::EmfileExc&&) Unexecuted instantiation: Iex_2_5::EnottyExc::operator=(Iex_2_5::EnottyExc&&) Unexecuted instantiation: Iex_2_5::EtxtbsyExc::operator=(Iex_2_5::EtxtbsyExc&&) Unexecuted instantiation: Iex_2_5::EfbigExc::operator=(Iex_2_5::EfbigExc&&) Unexecuted instantiation: Iex_2_5::EnospcExc::operator=(Iex_2_5::EnospcExc&&) Unexecuted instantiation: Iex_2_5::EspipeExc::operator=(Iex_2_5::EspipeExc&&) Unexecuted instantiation: Iex_2_5::ErofsExc::operator=(Iex_2_5::ErofsExc&&) Unexecuted instantiation: Iex_2_5::EmlinkExc::operator=(Iex_2_5::EmlinkExc&&) Unexecuted instantiation: Iex_2_5::EpipeExc::operator=(Iex_2_5::EpipeExc&&) Unexecuted instantiation: Iex_2_5::EdomExc::operator=(Iex_2_5::EdomExc&&) Unexecuted instantiation: Iex_2_5::ErangeExc::operator=(Iex_2_5::ErangeExc&&) Unexecuted instantiation: Iex_2_5::EnomsgExc::operator=(Iex_2_5::EnomsgExc&&) Unexecuted instantiation: Iex_2_5::EidrmExc::operator=(Iex_2_5::EidrmExc&&) Unexecuted instantiation: Iex_2_5::EchrngExc::operator=(Iex_2_5::EchrngExc&&) Unexecuted instantiation: Iex_2_5::El2nsyncExc::operator=(Iex_2_5::El2nsyncExc&&) Unexecuted instantiation: Iex_2_5::El3hltExc::operator=(Iex_2_5::El3hltExc&&) Unexecuted instantiation: Iex_2_5::El3rstExc::operator=(Iex_2_5::El3rstExc&&) Unexecuted instantiation: Iex_2_5::ElnrngExc::operator=(Iex_2_5::ElnrngExc&&) Unexecuted instantiation: Iex_2_5::EunatchExc::operator=(Iex_2_5::EunatchExc&&) Unexecuted instantiation: Iex_2_5::EnocsiExc::operator=(Iex_2_5::EnocsiExc&&) Unexecuted instantiation: Iex_2_5::El2hltExc::operator=(Iex_2_5::El2hltExc&&) Unexecuted instantiation: Iex_2_5::EdeadlkExc::operator=(Iex_2_5::EdeadlkExc&&) Unexecuted instantiation: Iex_2_5::EnolckExc::operator=(Iex_2_5::EnolckExc&&) Unexecuted instantiation: Iex_2_5::EbadeExc::operator=(Iex_2_5::EbadeExc&&) Unexecuted instantiation: Iex_2_5::EbadrExc::operator=(Iex_2_5::EbadrExc&&) Unexecuted instantiation: Iex_2_5::ExfullExc::operator=(Iex_2_5::ExfullExc&&) Unexecuted instantiation: Iex_2_5::EnoanoExc::operator=(Iex_2_5::EnoanoExc&&) Unexecuted instantiation: Iex_2_5::EbadrqcExc::operator=(Iex_2_5::EbadrqcExc&&) Unexecuted instantiation: Iex_2_5::EbadsltExc::operator=(Iex_2_5::EbadsltExc&&) Unexecuted instantiation: Iex_2_5::EdeadlockExc::operator=(Iex_2_5::EdeadlockExc&&) Unexecuted instantiation: Iex_2_5::EbfontExc::operator=(Iex_2_5::EbfontExc&&) Unexecuted instantiation: Iex_2_5::EnostrExc::operator=(Iex_2_5::EnostrExc&&) Unexecuted instantiation: Iex_2_5::EnodataExc::operator=(Iex_2_5::EnodataExc&&) Unexecuted instantiation: Iex_2_5::EtimeExc::operator=(Iex_2_5::EtimeExc&&) Unexecuted instantiation: Iex_2_5::EnosrExc::operator=(Iex_2_5::EnosrExc&&) Unexecuted instantiation: Iex_2_5::EnonetExc::operator=(Iex_2_5::EnonetExc&&) Unexecuted instantiation: Iex_2_5::EnopkgExc::operator=(Iex_2_5::EnopkgExc&&) Unexecuted instantiation: Iex_2_5::EremoteExc::operator=(Iex_2_5::EremoteExc&&) Unexecuted instantiation: Iex_2_5::EnolinkExc::operator=(Iex_2_5::EnolinkExc&&) Unexecuted instantiation: Iex_2_5::EadvExc::operator=(Iex_2_5::EadvExc&&) Unexecuted instantiation: Iex_2_5::EsrmntExc::operator=(Iex_2_5::EsrmntExc&&) Unexecuted instantiation: Iex_2_5::EcommExc::operator=(Iex_2_5::EcommExc&&) Unexecuted instantiation: Iex_2_5::EprotoExc::operator=(Iex_2_5::EprotoExc&&) Unexecuted instantiation: Iex_2_5::EmultihopExc::operator=(Iex_2_5::EmultihopExc&&) Unexecuted instantiation: Iex_2_5::EbadmsgExc::operator=(Iex_2_5::EbadmsgExc&&) Unexecuted instantiation: Iex_2_5::EnametoolongExc::operator=(Iex_2_5::EnametoolongExc&&) Unexecuted instantiation: Iex_2_5::EoverflowExc::operator=(Iex_2_5::EoverflowExc&&) Unexecuted instantiation: Iex_2_5::EnotuniqExc::operator=(Iex_2_5::EnotuniqExc&&) Unexecuted instantiation: Iex_2_5::EbadfdExc::operator=(Iex_2_5::EbadfdExc&&) Unexecuted instantiation: Iex_2_5::EremchgExc::operator=(Iex_2_5::EremchgExc&&) Unexecuted instantiation: Iex_2_5::ElibaccExc::operator=(Iex_2_5::ElibaccExc&&) Unexecuted instantiation: Iex_2_5::ElibbadExc::operator=(Iex_2_5::ElibbadExc&&) Unexecuted instantiation: Iex_2_5::ElibscnExc::operator=(Iex_2_5::ElibscnExc&&) Unexecuted instantiation: Iex_2_5::ElibmaxExc::operator=(Iex_2_5::ElibmaxExc&&) Unexecuted instantiation: Iex_2_5::ElibexecExc::operator=(Iex_2_5::ElibexecExc&&) Unexecuted instantiation: Iex_2_5::EilseqExc::operator=(Iex_2_5::EilseqExc&&) Unexecuted instantiation: Iex_2_5::EnosysExc::operator=(Iex_2_5::EnosysExc&&) Unexecuted instantiation: Iex_2_5::EloopExc::operator=(Iex_2_5::EloopExc&&) Unexecuted instantiation: Iex_2_5::ErestartExc::operator=(Iex_2_5::ErestartExc&&) Unexecuted instantiation: Iex_2_5::EstrpipeExc::operator=(Iex_2_5::EstrpipeExc&&) Unexecuted instantiation: Iex_2_5::EnotemptyExc::operator=(Iex_2_5::EnotemptyExc&&) Unexecuted instantiation: Iex_2_5::EusersExc::operator=(Iex_2_5::EusersExc&&) Unexecuted instantiation: Iex_2_5::EnotsockExc::operator=(Iex_2_5::EnotsockExc&&) Unexecuted instantiation: Iex_2_5::EdestaddrreqExc::operator=(Iex_2_5::EdestaddrreqExc&&) Unexecuted instantiation: Iex_2_5::EmsgsizeExc::operator=(Iex_2_5::EmsgsizeExc&&) Unexecuted instantiation: Iex_2_5::EprototypeExc::operator=(Iex_2_5::EprototypeExc&&) Unexecuted instantiation: Iex_2_5::EnoprotooptExc::operator=(Iex_2_5::EnoprotooptExc&&) Unexecuted instantiation: Iex_2_5::EprotonosupportExc::operator=(Iex_2_5::EprotonosupportExc&&) Unexecuted instantiation: Iex_2_5::EsocktnosupportExc::operator=(Iex_2_5::EsocktnosupportExc&&) Unexecuted instantiation: Iex_2_5::EopnotsuppExc::operator=(Iex_2_5::EopnotsuppExc&&) Unexecuted instantiation: Iex_2_5::EpfnosupportExc::operator=(Iex_2_5::EpfnosupportExc&&) Unexecuted instantiation: Iex_2_5::EafnosupportExc::operator=(Iex_2_5::EafnosupportExc&&) Unexecuted instantiation: Iex_2_5::EaddrinuseExc::operator=(Iex_2_5::EaddrinuseExc&&) Unexecuted instantiation: Iex_2_5::EaddrnotavailExc::operator=(Iex_2_5::EaddrnotavailExc&&) Unexecuted instantiation: Iex_2_5::EnetdownExc::operator=(Iex_2_5::EnetdownExc&&) Unexecuted instantiation: Iex_2_5::EnetunreachExc::operator=(Iex_2_5::EnetunreachExc&&) Unexecuted instantiation: Iex_2_5::EnetresetExc::operator=(Iex_2_5::EnetresetExc&&) Unexecuted instantiation: Iex_2_5::EconnabortedExc::operator=(Iex_2_5::EconnabortedExc&&) Unexecuted instantiation: Iex_2_5::EconnresetExc::operator=(Iex_2_5::EconnresetExc&&) Unexecuted instantiation: Iex_2_5::EnobufsExc::operator=(Iex_2_5::EnobufsExc&&) Unexecuted instantiation: Iex_2_5::EisconnExc::operator=(Iex_2_5::EisconnExc&&) Unexecuted instantiation: Iex_2_5::EnotconnExc::operator=(Iex_2_5::EnotconnExc&&) Unexecuted instantiation: Iex_2_5::EshutdownExc::operator=(Iex_2_5::EshutdownExc&&) Unexecuted instantiation: Iex_2_5::EtoomanyrefsExc::operator=(Iex_2_5::EtoomanyrefsExc&&) Unexecuted instantiation: Iex_2_5::EtimedoutExc::operator=(Iex_2_5::EtimedoutExc&&) Unexecuted instantiation: Iex_2_5::EconnrefusedExc::operator=(Iex_2_5::EconnrefusedExc&&) Unexecuted instantiation: Iex_2_5::EhostdownExc::operator=(Iex_2_5::EhostdownExc&&) Unexecuted instantiation: Iex_2_5::EhostunreachExc::operator=(Iex_2_5::EhostunreachExc&&) Unexecuted instantiation: Iex_2_5::EalreadyExc::operator=(Iex_2_5::EalreadyExc&&) Unexecuted instantiation: Iex_2_5::EinprogressExc::operator=(Iex_2_5::EinprogressExc&&) Unexecuted instantiation: Iex_2_5::EstaleExc::operator=(Iex_2_5::EstaleExc&&) Unexecuted instantiation: Iex_2_5::EioresidExc::operator=(Iex_2_5::EioresidExc&&) Unexecuted instantiation: Iex_2_5::EucleanExc::operator=(Iex_2_5::EucleanExc&&) Unexecuted instantiation: Iex_2_5::EnotnamExc::operator=(Iex_2_5::EnotnamExc&&) Unexecuted instantiation: Iex_2_5::EnavailExc::operator=(Iex_2_5::EnavailExc&&) Unexecuted instantiation: Iex_2_5::EisnamExc::operator=(Iex_2_5::EisnamExc&&) Unexecuted instantiation: Iex_2_5::EremoteioExc::operator=(Iex_2_5::EremoteioExc&&) Unexecuted instantiation: Iex_2_5::EinitExc::operator=(Iex_2_5::EinitExc&&) Unexecuted instantiation: Iex_2_5::EremdevExc::operator=(Iex_2_5::EremdevExc&&) Unexecuted instantiation: Iex_2_5::EcanceledExc::operator=(Iex_2_5::EcanceledExc&&) Unexecuted instantiation: Iex_2_5::EnolimfileExc::operator=(Iex_2_5::EnolimfileExc&&) Unexecuted instantiation: Iex_2_5::EproclimExc::operator=(Iex_2_5::EproclimExc&&) Unexecuted instantiation: Iex_2_5::EdisjointExc::operator=(Iex_2_5::EdisjointExc&&) Unexecuted instantiation: Iex_2_5::EnologinExc::operator=(Iex_2_5::EnologinExc&&) Unexecuted instantiation: Iex_2_5::EloginlimExc::operator=(Iex_2_5::EloginlimExc&&) Unexecuted instantiation: Iex_2_5::EgrouploopExc::operator=(Iex_2_5::EgrouploopExc&&) Unexecuted instantiation: Iex_2_5::EnoattachExc::operator=(Iex_2_5::EnoattachExc&&) Unexecuted instantiation: Iex_2_5::EnotsupExc::operator=(Iex_2_5::EnotsupExc&&) Unexecuted instantiation: Iex_2_5::EnoattrExc::operator=(Iex_2_5::EnoattrExc&&) Unexecuted instantiation: Iex_2_5::EdircorruptedExc::operator=(Iex_2_5::EdircorruptedExc&&) Unexecuted instantiation: Iex_2_5::EdquotExc::operator=(Iex_2_5::EdquotExc&&) Unexecuted instantiation: Iex_2_5::EnfsremoteExc::operator=(Iex_2_5::EnfsremoteExc&&) Unexecuted instantiation: Iex_2_5::EcontrollerExc::operator=(Iex_2_5::EcontrollerExc&&) Unexecuted instantiation: Iex_2_5::EnotcontrollerExc::operator=(Iex_2_5::EnotcontrollerExc&&) Unexecuted instantiation: Iex_2_5::EenqueuedExc::operator=(Iex_2_5::EenqueuedExc&&) Unexecuted instantiation: Iex_2_5::EnotenqueuedExc::operator=(Iex_2_5::EnotenqueuedExc&&) Unexecuted instantiation: Iex_2_5::EjoinedExc::operator=(Iex_2_5::EjoinedExc&&) Unexecuted instantiation: Iex_2_5::EnotjoinedExc::operator=(Iex_2_5::EnotjoinedExc&&) Unexecuted instantiation: Iex_2_5::EnoprocExc::operator=(Iex_2_5::EnoprocExc&&) Unexecuted instantiation: Iex_2_5::EmustrunExc::operator=(Iex_2_5::EmustrunExc&&) Unexecuted instantiation: Iex_2_5::EnotstoppedExc::operator=(Iex_2_5::EnotstoppedExc&&) Unexecuted instantiation: Iex_2_5::EclockcpuExc::operator=(Iex_2_5::EclockcpuExc&&) Unexecuted instantiation: Iex_2_5::EinvalstateExc::operator=(Iex_2_5::EinvalstateExc&&) Unexecuted instantiation: Iex_2_5::EnoexistExc::operator=(Iex_2_5::EnoexistExc&&) Unexecuted instantiation: Iex_2_5::EendofminorExc::operator=(Iex_2_5::EendofminorExc&&) Unexecuted instantiation: Iex_2_5::EbufsizeExc::operator=(Iex_2_5::EbufsizeExc&&) Unexecuted instantiation: Iex_2_5::EemptyExc::operator=(Iex_2_5::EemptyExc&&) Unexecuted instantiation: Iex_2_5::EnointrgroupExc::operator=(Iex_2_5::EnointrgroupExc&&) Unexecuted instantiation: Iex_2_5::EinvalmodeExc::operator=(Iex_2_5::EinvalmodeExc&&) Unexecuted instantiation: Iex_2_5::EcantextentExc::operator=(Iex_2_5::EcantextentExc&&) Unexecuted instantiation: Iex_2_5::EinvaltimeExc::operator=(Iex_2_5::EinvaltimeExc&&) Unexecuted instantiation: Iex_2_5::EdestroyedExc::operator=(Iex_2_5::EdestroyedExc&&) Unexecuted instantiation: Iex_2_5::OverflowExc::operator=(Iex_2_5::OverflowExc&&) Unexecuted instantiation: Iex_2_5::UnderflowExc::operator=(Iex_2_5::UnderflowExc&&) Unexecuted instantiation: Iex_2_5::DivzeroExc::operator=(Iex_2_5::DivzeroExc&&) Unexecuted instantiation: Iex_2_5::InexactExc::operator=(Iex_2_5::InexactExc&&) Unexecuted instantiation: Iex_2_5::InvalidFpOpExc::operator=(Iex_2_5::InvalidFpOpExc&&) |
159 | 0 | exp name::~name () throw () {} Unexecuted instantiation: Imath_2_5::NullVecExc::~NullVecExc() Unexecuted instantiation: Imath_2_5::InfPointExc::~InfPointExc() Unexecuted instantiation: Imath_2_5::NullQuatExc::~NullQuatExc() Unexecuted instantiation: Imath_2_5::SingMatrixExc::~SingMatrixExc() Unexecuted instantiation: Imath_2_5::ZeroScaleExc::~ZeroScaleExc() Unexecuted instantiation: Imath_2_5::IntVecNormalizeExc::~IntVecNormalizeExc() |
160 | | |
161 | | // For backward compatibility. |
162 | | #define DEFINE_EXC(name, base) DEFINE_EXC_EXP(, name, base) |
163 | | |
164 | | |
165 | | //-------------------------------------------------------- |
166 | | // Some exceptions which should be useful in most programs |
167 | | //-------------------------------------------------------- |
168 | | DEFINE_EXC_EXP (IEX_EXPORT, ArgExc, BaseExc) // Invalid arguments to a function call |
169 | | |
170 | | DEFINE_EXC_EXP (IEX_EXPORT, LogicExc, BaseExc) // General error in a program's logic, |
171 | | // for example, a function was called |
172 | | // in a context where the call does |
173 | | // not make sense. |
174 | | |
175 | | DEFINE_EXC_EXP (IEX_EXPORT, InputExc, BaseExc) // Invalid input data, e.g. from a file |
176 | | |
177 | | DEFINE_EXC_EXP (IEX_EXPORT, IoExc, BaseExc) // Input or output operation failed |
178 | | |
179 | | DEFINE_EXC_EXP (IEX_EXPORT, MathExc, BaseExc) // Arithmetic exception; more specific |
180 | | // exceptions derived from this class |
181 | | // are defined in ExcMath.h |
182 | | |
183 | | DEFINE_EXC_EXP (IEX_EXPORT, ErrnoExc, BaseExc) // Base class for exceptions corresponding |
184 | | // to errno values (see errno.h); more |
185 | | // specific exceptions derived from this |
186 | | // class are defined in ExcErrno.h |
187 | | |
188 | | DEFINE_EXC_EXP (IEX_EXPORT, NoImplExc, BaseExc) // Missing method exception e.g. from a |
189 | | // call to a method that is only partially |
190 | | // or not at all implemented. A reminder |
191 | | // to lazy software people to get back |
192 | | // to work. |
193 | | |
194 | | DEFINE_EXC_EXP (IEX_EXPORT, NullExc, BaseExc) // A pointer is inappropriately null. |
195 | | |
196 | | DEFINE_EXC_EXP (IEX_EXPORT, TypeExc, BaseExc) // An object is an inappropriate type, |
197 | | // i.e. a dynamnic_cast failed. |
198 | | |
199 | | |
200 | | //---------------------------------------------------------------------- |
201 | | // Stack-tracing support: |
202 | | // |
203 | | // setStackTracer(st) |
204 | | // |
205 | | // installs a stack-tracing routine, st, which will be called from |
206 | | // class BaseExc's constructor every time an exception derived from |
207 | | // BaseExc is thrown. The stack-tracing routine should return a |
208 | | // string that contains a printable representation of the program's |
209 | | // current call stack. This string will be stored in the BaseExc |
210 | | // object; the string is accesible via the BaseExc::stackTrace() |
211 | | // method. |
212 | | // |
213 | | // setStackTracer(0) |
214 | | // |
215 | | // removes the current stack tracing routine. When an exception |
216 | | // derived from BaseExc is thrown, the stack trace string stored |
217 | | // in the BaseExc object will be empty. |
218 | | // |
219 | | // stackTracer() |
220 | | // |
221 | | // returns a pointer to the current stack-tracing routine, or 0 |
222 | | // if there is no current stack stack-tracing routine. |
223 | | // |
224 | | //---------------------------------------------------------------------- |
225 | | |
226 | | typedef std::string (* StackTracer) (); |
227 | | |
228 | | IEX_EXPORT void setStackTracer (StackTracer stackTracer); |
229 | | IEX_EXPORT StackTracer stackTracer (); |
230 | | |
231 | | |
232 | | IEX_INTERNAL_NAMESPACE_HEADER_EXIT |
233 | | |
234 | | #endif // INCLUDED_IEXBASEEXC_H |