blob: b3468d9e82f94f9120fbb82a6ee0c69eb6a9d4d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#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;
}
|