diff options
| author | Maxime Coste <mawww@kakoune.org> | 2017-06-07 09:54:11 +0100 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2017-06-07 09:54:11 +0100 |
| commit | 295fa5b27ddb09e8c79e0904be95ccd8485e0962 (patch) | |
| tree | fba712fe211786e4f0539ee209a768b8c3a06902 /src/buffer.hh | |
| parent | a5e7b6a22f83160b0fa7b02a3586a7160c62967e (diff) | |
Use String default ctor instead of empty string
Diffstat (limited to 'src/buffer.hh')
| -rw-r--r-- | src/buffer.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.hh b/src/buffer.hh index 64911a14..bfdda041 100644 --- a/src/buffer.hh +++ b/src/buffer.hh @@ -195,7 +195,7 @@ public: ValueMap& values() const { return m_values; } void run_hook_in_own_context(StringView hook_name, StringView param, - String client_name = ""); + String client_name = {}); void reload(StringView data, timespec fs_timestamp = InvalidTime); |
