You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
375 B
18 lines
375 B
#include <infer_model/portability.h>
|
|
|
|
#ifdef INFER_CPP11_ON
|
|
|
|
#ifdef __INFER_BUFFEROVERRUN
|
|
// Separate model for bufferoverrun checker
|
|
// TODO t17807570: move to a separate directory
|
|
#include<infer_model/vector_bufferoverrun.h>
|
|
#else
|
|
#include<infer_model/vector.h>
|
|
#endif
|
|
|
|
#else
|
|
// don't model std::vector pre-c++11 to
|
|
// simplify implementation
|
|
#include_next <vector>
|
|
#endif
|