blob: b3468d9e82f94f9120fbb82a6ee0c69eb6a9d4d6 [file] [log] [blame]
#include <vector>
#include <strstream.h>
/*----------------------------------------*/
struct connection_t {
connection_t() {}
};
vector<connection_t> connections;
/*----------------------------------------*/
int
main() {
ostrstream str;
connections.insert(connections.end(), connection_t());
return 0;
}