simple stupid quick question

How do i push an empty data structure inside a data structure?

1
2
  std::stack<std::set<std::string>> x;
  x.push(???);
Just x.emplace();
thanks!
Topic archived. No new replies allowed.