summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-02-11 12:14:00 (GMT)
committerRemko Tronçon <git@el-tramo.be>2010-02-11 12:14:00 (GMT)
commit0efa7c32aaf21a29b42b5926cc116007056843be (patch)
tree882f663a5dd0e65694bf6077b71086dd77fd7ff8 /3rdParty/CppUnit/src/Exception.cpp
parent1d20eabbc32274b491b4c2bedf73d19933d97bfd (diff)
downloadswift-0efa7c32aaf21a29b42b5926cc116007056843be.zip
swift-0efa7c32aaf21a29b42b5926cc116007056843be.tar.bz2
Moved some modules into separate git modules.
Diffstat (limited to '3rdParty/CppUnit/src/Exception.cpp')
m---------3rdParty/CppUnit0
-rw-r--r--3rdParty/CppUnit/src/Exception.cpp126
2 files changed, 0 insertions, 126 deletions
diff --git a/3rdParty/CppUnit b/3rdParty/CppUnit
new file mode 160000
+Subproject b4c34eb947c6497c6387c55c7581ec875f4e7d4
diff --git a/3rdParty/CppUnit/src/Exception.cpp b/3rdParty/CppUnit/src/Exception.cpp
deleted file mode 100644
index 3bbe24b..0000000
--- a/3rdParty/CppUnit/src/Exception.cpp
+++ /dev/null
@@ -1,126 +0,0 @@
-#include <cppunit/Exception.h>
-
-
-CPPUNIT_NS_BEGIN
-
-
-#ifdef CPPUNIT_ENABLE_SOURCELINE_DEPRECATED
-/*!
- * \deprecated Use SourceLine::isValid() instead.
- */
-const std::string Exception::UNKNOWNFILENAME = "<unknown>";
-
-/*!
- * \deprecated Use SourceLine::isValid() instead.
- */
-const long Exception::UNKNOWNLINENUMBER = -1;
-#endif
-
-
-Exception::Exception( const Exception &other )
- : std::exception( other )
-{
- m_message = other.m_message;
- m_sourceLine = other.m_sourceLine;
-}
-
-
-Exception::Exception( const Message &message,
- const SourceLine &sourceLine )
- : m_message( message )
- , m_sourceLine( sourceLine )
-{
-}
-
-
-#ifdef CPPUNIT_ENABLE_SOURCELINE_DEPRECATED
-Exception::Exception( std::string message,
- long lineNumber,
- std::string fileName )
- : m_message( message )
- , m_sourceLine( fileName, lineNumber )
-{
-}
-#endif
-
-
-Exception::~Exception() throw()
-{
-}
-
-
-Exception &
-Exception::operator =( const Exception& other )
-{
-// Don't call superclass operator =(). VC++ STL implementation
-// has a bug. It calls the destructor and copy constructor of
-// std::exception() which reset the virtual table to std::exception.
-// SuperClass::operator =(other);
-
- if ( &other != this )
- {
- m_message = other.m_message;
- m_sourceLine = other.m_sourceLine;
- }
-
- return *this;
-}
-
-
-const char*
-Exception::what() const throw()
-{
- Exception *mutableThis = CPPUNIT_CONST_CAST( Exception *, this );
- mutableThis->m_whatMessage = m_message.shortDescription() + "\n" +
- m_message.details();
- return m_whatMessage.c_str();
-}
-
-
-SourceLine
-Exception::sourceLine() const
-{
- return m_sourceLine;
-}
-
-
-Message
-Exception::message() const
-{
- return m_message;
-}
-
-
-void
-Exception::setMessage( const Message &message )
-{
- m_message = message;
-}
-
-
-#ifdef CPPUNIT_ENABLE_SOURCELINE_DEPRECATED
-long
-Exception::lineNumber() const
-{
- return m_sourceLine.isValid() ? m_sourceLine.lineNumber() :
- UNKNOWNLINENUMBER;
-}
-
-
-std::string
-Exception::fileName() const
-{
- return m_sourceLine.isValid() ? m_sourceLine.fileName() :
- UNKNOWNFILENAME;
-}
-#endif
-
-
-Exception *
-Exception::clone() const
-{
- return new Exception( *this );
-}
-
-
-CPPUNIT_NS_END