CppAD: A C++ Algorithmic Differentiation Package 20110419
#define CPPAD_INVALID_COMPLEX_CASE (   function)
Value:
inline std::complex<float> function(const std::complex<float> &x)             \
{       CppAD::ErrorHandler::Call(                                            \
                true     , __LINE__ , __FILE__ ,                              \
                "std::complex<float>",                                        \
                "Error: cannot use " #function " with a complex type"         \
        );                                                                    \
        return std::complex<float>(0);                                        \
}

Definition at line 239 of file base_complex.hpp.