\brief Appends the directory \p name.
| 63 | |
| 64 | /// \brief Appends the directory \p name. |
| 65 | void push(const std::string& name) { |
| 66 | _string += name; |
| 67 | update(); |
| 68 | } |
| 69 | |
| 70 | /// \brief Appends the directory [\p first, \p last). |
| 71 | void push(const char* first, const char* last) { |
no test coverage detected