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.txx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libbutl/path.txx') diff --git a/libbutl/path.txx b/libbutl/path.txx index e407a16..77fbbd7 100644 --- a/libbutl/path.txx +++ b/libbutl/path.txx @@ -151,7 +151,7 @@ LIBBUTL_MODEXPORT namespace butl //@@ MOD Clang needs this for some reason. string_type& s (this->path_); difference_type& ts (this->tsep_); - typedef std::vector paths; + using paths = small_vector; paths ps; bool tsep (ts != 0); // Trailing directory separator. -- cgit v1.1