summaryrefslogtreecommitdiff
path: root/simple.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 /simple.h
parent2799132fd7c5f344c7685d0bc7903fb51ef7c2b3 (diff)
downloadcryptopp-git-22c3e411334041c8959055d1d104c3039f1e46b1.tar.gz
Removed USING_NAMESPACE(std). Changed cout → std::cout, cerr → std::cerr, ...
Diffstat (limited to 'simple.h')
-rw-r--r--simple.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/simple.h b/simple.h
index 53e3fcb9..74c4a6ff 100644
--- a/simple.h
+++ b/simple.h
@@ -72,7 +72,7 @@ public:
bool ChannelFlush(const std::string &channel, bool hardFlush, int propagation=-1, bool blocking=true)
{
if (hardFlush && !InputBufferIsEmpty())
- throw CannotFlush("Unflushable<T>: this object has buffered input that cannot be flushed");
+ throw CannotFlush("Unflushable<T>: this object has buffered input that cannot be std::flushed");
else
{
BufferedTransformation *attached = this->AttachedTransformation();