1 2 3 4 5 6 7 8 9 10
#include "path.hh" Path& Path::join(const std::string& tail, bool is_file) { if (final_) return *this; path_.push_back(tail); final_ = is_file; return *this; }