blob: 11b38cdc731bc8e19f321904a983fd0824a164c8 [file] [log] [blame]
#include <vector>
#include <sstream>
using namespace std;
/*----------------------------------------*/
struct connection_t {
connection_t() {}
};
std::vector<connection_t> connections;
/*----------------------------------------*/
int
main() {
ostringstream str;
connections.insert(connections.end(), connection_t());
return 0;
}