mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 20:54:56 +00:00
12 lines
221 B
Diff
12 lines
221 B
Diff
diff --git a/src/path.h b/src/path.h
|
|
--- a/src/path.h
|
|
+++ b/src/path.h
|
|
@@ -232,7 +232,7 @@
|
|
*/
|
|
path operator+(std::string const & str) const {
|
|
path p(*this);
|
|
- p.append(str);
|
|
+ p.push_back(str);
|
|
return p;
|
|
}
|