From bfd79e59dc34314a089a0024af56d04d84456ebd Mon Sep 17 00:00:00 2001 From: Henry Wilson Date: Thu, 20 Sep 2018 23:44:14 +0100 Subject: Codechange: Replace SmallVector::Clear() with std::vector::clear() --- src/fios.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/fios.h') diff --git a/src/fios.h b/src/fios.h index 24c9f370e..788ac654f 100644 --- a/src/fios.h +++ b/src/fios.h @@ -185,7 +185,7 @@ public: /** Remove all items from the list. */ inline void Clear() { - this->files.Clear(); + this->files.clear(); } /** Compact the list down to the smallest block size boundary. */ -- cgit v1.2.3-54-g00ecf