DEVTOOLS: Make Coverity happy.
This is mainly due to unhandled clang __has_featrure() buit-in. I do not like this hack, but Coverity proved to be a very good tool for us.
This commit is contained in:
parent
8053989dd1
commit
ca5804a253
6 changed files with 15 additions and 6 deletions
|
@ -20,6 +20,10 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef __has_feature // Optional of course.
|
||||
#define __has_feature(x) 0 // Compatibility with non-clang compilers.
|
||||
#endif
|
||||
|
||||
#include <fstream>
|
||||
#include <string>
|
||||
#include <stdio.h>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue