summaryrefslogtreecommitdiff
path: root/polynomi.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-07-30 17:35:58 -0400
committerJeffrey Walton <noloader@gmail.com>2015-07-30 17:35:58 -0400
commit22c3e411334041c8959055d1d104c3039f1e46b1 (patch)
tree35981e23e21213d2a5add610ac579a0f6c20cf65 /polynomi.h
parent2799132fd7c5f344c7685d0bc7903fb51ef7c2b3 (diff)
downloadcryptopp-git-22c3e411334041c8959055d1d104c3039f1e46b1.tar.gz
Removed USING_NAMESPACE(std). Changed cout → std::cout, cerr → std::cerr, ...
Diffstat (limited to 'polynomi.h')
-rw-r--r--polynomi.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/polynomi.h b/polynomi.h
index cddadaea..9325af96 100644
--- a/polynomi.h
+++ b/polynomi.h
@@ -64,7 +64,7 @@ public:
template <typename Iterator> PolynomialOver(Iterator begin, Iterator end)
: m_coefficients(begin, end) {}
- //! convert from string
+ //! convert from std::string
PolynomialOver(const char *str, const Ring &ring) {FromStr(str, ring);}
//! convert from big-endian byte array
@@ -184,7 +184,7 @@ public:
template <typename Iterator> PolynomialOverFixedRing(Iterator first, Iterator last)
: B(first, last) {}
- //! convert from string
+ //! convert from std::string
explicit PolynomialOverFixedRing(const char *str) : B(str, ms_fixedRing) {}
//! convert from big-endian byte array