diff options
author | tobo <tobo@yandex-team.ru> | 2022-02-24 11:58:08 +0300 |
---|---|---|
committer | tobo <tobo@yandex-team.ru> | 2022-02-24 11:58:08 +0300 |
commit | 0cd396f47ddebe98614ce96b7b0394a0a892b7cc (patch) | |
tree | 11335611c65e163e7633020597acd396ca68450f /util/system/fs_win.h | |
parent | 42f6e0ffddb92ca389ac4bcd01acb0caa905c6df (diff) | |
download | ydb-0cd396f47ddebe98614ce96b7b0394a0a892b7cc.tar.gz |
fix CLion perf warnings - use const references instead of passing by value
ref:e94e72a813a3aa41c543fd1d9f7d73f02cca8bc0
Diffstat (limited to 'util/system/fs_win.h')
-rw-r--r-- | util/system/fs_win.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/system/fs_win.h b/util/system/fs_win.h index 2dfdcb2f92..b91f869106 100644 --- a/util/system/fs_win.h +++ b/util/system/fs_win.h @@ -27,5 +27,5 @@ namespace NFsPrivate { bool WinSetCurrentWorkingDirectory(const TString& path); - bool WinMakeDirectory(const TString path); + bool WinMakeDirectory(const TString& path); } |