Code RoomUse after move in C++
MediumPrep Room Coding #1997

Use after move in C++

Code reviewCode quality & reviewMid–Senior~20 min

Review this C++ resource handoff. `enqueue` takes ownership of the job; the caller logs the job id afterward.

What a strong answer looks like

Separate real bugs from style. Rank issues by severity, point at the root cause rather than the symptom, and suggest a concrete fix, specific and kind.

0:00 of about 20 min
Mark a line and say what kind of problem it is.0 findings
1void enqueue(std::unique_ptr<Job> job);
2 
3void submit(std::unique_ptr<Job> job) {
4 enqueue(std::move(job));
5 // bookkeeping
6 metrics.record("submit", job->id()); // (1)
7 if (job->priority() > kHigh) { // (2)
8 scheduler.bump(job->id());
9 }
10}
Which questions mattered is sealed until you submit. Telling you now would just be handing over the edge cases.