File: model_coverty.cpp

package info (click to toggle)
mia 2.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 13,532 kB
  • ctags: 16,800
  • sloc: cpp: 137,909; python: 1,057; ansic: 998; sh: 146; xml: 127; csh: 24; makefile: 13
file content (26 lines) | stat: -rw-r--r-- 255 bytes parent folder | download | duplicates (7)
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__();  
  
}