source: git/libpolys/tests/cxxtest/Root.cpp @ ba5e9e

fieker-DuValspielwiese
Last change on this file since ba5e9e was 35564a5, checked in by Oleksandr Motsak <motsak@…>, 11 years ago
An attempt to explicitely declare all used templates in order to use -fno-implicit-templates NOTE: incomplete due to heavy STL usage in kernel/tgb.cc! NOTE: Singular/Minors* also may be guilty...
  • Property mode set to 100644
File size: 1.2 KB
Line 
1#ifndef __cxxtest__Root_cpp__
2#define __cxxtest__Root_cpp__
3
4//
5// This file holds the "root" of CxxTest, i.e.
6// the parts that must be in a source file file.
7//
8
9#include <cxxtest/Descriptions.cpp>
10#include <cxxtest/DummyDescriptions.cpp>
11#include <cxxtest/GlobalFixture.cpp>
12#include <cxxtest/LinkedList.cpp>
13#include <cxxtest/RealDescriptions.cpp>
14#include <cxxtest/TestSuite.cpp>
15#include <cxxtest/TestTracker.cpp>
16#include <cxxtest/ValueTraits.cpp>
17
18
19template char* CxxTest::numberToString<double>(double, char*, double, unsigned int, unsigned int);
20template char* CxxTest::numberToString<unsigned int>(unsigned int, char*, unsigned int, unsigned int, unsigned int);
21template char* CxxTest::numberToString<unsigned long>(unsigned long, char*, unsigned long, unsigned int, unsigned int);
22template std::basic_ostream<char, std::char_traits<char> >& std::operator<< <std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&, char const*);
23template void CxxTest::doAssertDelta<float, float, float>(char const*, unsigned int, char const*, float, char const*, float, char const*, float, char const*);
24template bool CxxTest::delta<float, float, float>(float, float, float);
25
26
27#endif // __cxxtest__Root_cpp__
Note: See TracBrowser for help on using the repository browser.