File: model_coverty.cpp

package info (click to toggle)
mia 2.4.7-13
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 16,860 kB
  • sloc: cpp: 162,689; python: 1,317; sh: 315; xml: 127; makefile: 36; csh: 24; ansic: 9
file content (26 lines) | stat: -rw-r--r-- 255 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/***/

namespace std {

template <typename T> 
swap(T* &a, T* &b) {
        return; 
}

}

void BOOST_REQUIRE(bool x) 
{
        if (!x)
		__coverity_panic__();  
  
}


void BOOST_REQUIRE(const void *x) 
{
        if (!x)
		__coverity_panic__();  
  
}