Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <string>
- #include <vector>
- using namespace std;
- struct Thing
- {
- vector<string> stuff;
- Thing(vector<string> const& crap) : stuff(crap)
- {
- }
- };
- int main(int, char**)
- {
- Thing thingy = std::string("bar");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment