Skip to content

Instantly share code, notes, and snippets.

@meshell
Created February 22, 2016 22:13
Show Gist options
  • Save meshell/95f67eab8ee0c72dcc11 to your computer and use it in GitHub Desktop.
Save meshell/95f67eab8ee0c72dcc11 to your computer and use it in GitHub Desktop.
#include <string>
#include <vector>
struct Type
{
Type(std::string, float) {};
Type(Type const &) = delete;
Type(Type &&) = default;
};
int main()
{
std::vector<Type> values;
values.emplace_back("pi", 3.14);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment