summaryrefslogtreecommitdiff
path: root/klm/util/exception.cc
diff options
context:
space:
mode:
authorJonathan Clark <jon.h.clark@gmail.com>2011-03-24 09:51:40 -0400
committerJonathan Clark <jon.h.clark@gmail.com>2011-03-24 09:51:40 -0400
commitc9f94d0845677e1be7d26b6ddc9fc642ef50f87d (patch)
tree929125cc230034d38e84d5d80e32635a0c9bc6b9 /klm/util/exception.cc
parent3beddfbe44c52fb69c390d0af92ab7c5e1647622 (diff)
parent38df103ab42e873965cf05ca83f6fd9472b74031 (diff)
Undo some silly local changes so we can pull
Diffstat (limited to 'klm/util/exception.cc')
-rw-r--r--klm/util/exception.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/klm/util/exception.cc b/klm/util/exception.cc
index 077405f4..84f9fe7c 100644
--- a/klm/util/exception.cc
+++ b/klm/util/exception.cc
@@ -9,11 +9,11 @@ Exception::Exception() throw() {}
Exception::~Exception() throw() {}
Exception::Exception(const Exception &from) : std::exception() {
- stream_.str(from.stream_.str());
+ stream_ << from.stream_.str();
}
Exception &Exception::operator=(const Exception &from) {
- stream_.str(from.stream_.str());
+ stream_ << from.stream_.str();
return *this;
}