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.

17 lines
327 B

#include <infer_model/portability.h>
#ifdef INFER_CPP11_ON
#include <infer_model/begin_name_override.inc>
#include_next <memory>
#include <infer_model/end_name_override.inc>
#include<infer_model/unique_ptr.h>
#include<infer_model/shared_ptr.h>
#else
// don't model memory for pre-C++11 code
#include_next <memory>
#endif