From 210d9cacde638449af430fad0bf245c04c123ebf Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 24 Nov 2018 16:04:53 +0200 Subject: Fix inline function ordering (dllexport) --- libbutl/fdstream.mxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'libbutl/fdstream.mxx') diff --git a/libbutl/fdstream.mxx b/libbutl/fdstream.mxx index 2bb3807..dd7418e 100644 --- a/libbutl/fdstream.mxx +++ b/libbutl/fdstream.mxx @@ -270,9 +270,8 @@ LIBBUTL_MODEXPORT namespace butl { protected: fdstream_base () = default; - fdstream_base (auto_fd&& fd, std::uint64_t pos) - : buf_ (std::move (fd), pos) {} - fdstream_base (auto_fd&&, fdstream_mode, std::uint64_t); + fdstream_base (auto_fd&&, std::uint64_t pos); + fdstream_base (auto_fd&&, fdstream_mode, std::uint64_t pos); public: int -- cgit v1.1