From 6dc3097998e69ec97aff68b9ef80ac9eb8dd76d8 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 23 Mar 2015 22:35:56 +0100 Subject: [PATCH] fs/io/FileOutputStream: make "path" const --- src/fs/io/FileOutputStream.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fs/io/FileOutputStream.hxx b/src/fs/io/FileOutputStream.hxx index ff1ae31a4..7d30d95bb 100644 --- a/src/fs/io/FileOutputStream.hxx +++ b/src/fs/io/FileOutputStream.hxx @@ -38,7 +38,7 @@ class Path; class FileOutputStream final : public OutputStream { - AllocatedPath path; + const AllocatedPath path; #ifdef WIN32 HANDLE handle;