From c03300fe14e5caffbee87565b76a64febfc4313a Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 6 Jun 2019 10:19:59 +0200 Subject: Use small_vector in path::normalize() --- libbutl/path.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libbutl/path.cxx') diff --git a/libbutl/path.cxx b/libbutl/path.cxx index f027233..608f309 100644 --- a/libbutl/path.cxx +++ b/libbutl/path.cxx @@ -29,7 +29,6 @@ #ifndef __cpp_lib_modules_ts #include -#include #include #include @@ -124,7 +123,8 @@ namespace butl } #ifndef _WIN32 - static const vector tmp_vars ({"TMPDIR", "TMP", "TEMP", "TEMPDIR"}); + static const small_vector tmp_vars ( + {"TMPDIR", "TMP", "TEMP", "TEMPDIR"}); static string temp_directory () -- cgit v1.1