mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-07 21:37:14 +01:00
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
|