Hacker News new | past | comments | ask | show | jobs | submit login

In C++14 this got easier.

Declaration:

  struct Kilogram {float v;};
Instantiation:

  Kilogram x = {1};
or

  Kilogram x{1};



Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: