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.

15 lines
264 B

#ifndef FIRSTHEADER
#define FIRSTHEADER
#include "SecondHeader.h" // Just a class which gets in the lazy deserialization chain
#include "stl_map.h"
#include "vector"
typedef std::map<int>::iterator el;
inline void func() {
std::vector<int>::func();
}
#endif