Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 48671
Collapse All | Expand All

(-)inkscape-0.38.1/src/libnr/nr-maybe.h (-1 / +1 lines)
Lines 24-30 Link Here
24
/** An exception class for run-time type errors */
24
/** An exception class for run-time type errors */
25
template <typename T>
25
template <typename T>
26
class IsNot : public std::domain_error {
26
class IsNot : public std::domain_error {
27
    IsNot() : domain_error(string("Is not ") + typeid(T).name()) {}
27
    IsNot() : domain_error(std::string("Is not ") + typeid(T).name()) {}
28
};
28
};
29
29
30
/** A type with only one value, which (in principle) is only equal to itself.
30
/** A type with only one value, which (in principle) is only equal to itself.

Return to bug 48671