mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-07 13:27:13 +01:00
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
17 lines
254 B
C++
17 lines
254 B
C++
//
|
|
// CppUnitException.cpp
|
|
//
|
|
|
|
|
|
#include "CppUnit/CppUnitException.h"
|
|
|
|
|
|
namespace CppUnit {
|
|
|
|
|
|
const std::string CppUnitException::CPPUNIT_UNKNOWNFILENAME = "<unknown>";
|
|
const int CppUnitException::CPPUNIT_UNKNOWNLINENUMBER = -1;
|
|
|
|
|
|
} // namespace CppUnit
|