fix complex, rational

This commit is contained in:
bolero-MURAKAMI 2012-08-29 01:16:12 +09:00
parent cdb10c0fbe
commit 6b3f7ad894
19 changed files with 1568 additions and 1360 deletions

View file

@ -0,0 +1,21 @@
#ifndef SPROUT_RATIONAL_EXCEPTIONS_HPP
#define SPROUT_RATIONAL_EXCEPTIONS_HPP
#include <stdexcept>
#include <sprout/config.hpp>
namespace sprout {
//
// bad_rational
//
class bad_rational
: public std::domain_error
{
public:
explicit bad_rational()
: std::domain_error("bad rational: zero denominator")
{}
};
} // namespace sprout
#endif // SPROUT_RATIONAL_EXCEPTIONS_HPP