cpp_noob
No user record in our sample, but cpp_noob has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
No user record in our sample, but cpp_noob has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
struct Person { string name; uint8_t age; }; isn't this missing a move constructor? Person::Person(Person&& p) : name(std::move(p.name)), age(p.age) {} or is C++ able to make these implicitly now?