| 21 | double weight; |
| 22 | |
| 23 | user(int age, string name, double weight) : age(age), name(name), weight(weight) { } |
| 24 | |
| 25 | static std::vector<user> all(sqlite::database& db) { |
| 26 | builder<user, int, std::string, double> person_builder; |
nothing calls this directly
no outgoing calls
no test coverage detected