From df1ef68cd8e8582724ce1192bfc202e0b9aeaf0c Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 28 Sep 2021 19:24:31 +0300 Subject: Get rid of C++ modules related code and rename *.mxx files to *.hxx --- libbutl/path-io.mxx | 54 ----------------------------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 libbutl/path-io.mxx (limited to 'libbutl/path-io.mxx') diff --git a/libbutl/path-io.mxx b/libbutl/path-io.mxx deleted file mode 100644 index 6b6dbcf..0000000 --- a/libbutl/path-io.mxx +++ /dev/null @@ -1,54 +0,0 @@ -// file : libbutl/path-io.mxx -*- C++ -*- -// license : MIT; see accompanying LICENSE file - -#ifndef __cpp_modules_ts -#pragma once -#endif - -// C includes. - -#include - -#ifndef __cpp_lib_modules_ts -#include -#endif - -// Other includes. - -#ifdef __cpp_modules_ts -export module butl.path_io; -#ifdef __cpp_lib_modules_ts -import std.core; //@@ MOD TMP (should not be needed). -import std.io; -#endif -import butl.path; -#else -#include -#endif - -#include - -LIBBUTL_MODEXPORT namespace butl -{ - // This is the default path IO implementation. It is separate to allow - // custom implementations. For example, we may want to print paths as - // relative to the working directory. Or we may want to print '~' for the - // home directory prefix. Or we may want to print dir_path with a trailing - // '/'. - // - template - inline std::basic_ostream& - operator<< (std::basic_ostream& os, const basic_path& p) - { - return to_stream (os, p, false /* representation */); - } - - template - inline std::basic_ostream& - operator<< (std::basic_ostream& os, const basic_path_name_view

& v) - { - assert (!v.null ()); - - return v.name != nullptr && *v.name ? (os << **v.name) : (os << *v.path); - } -} -- cgit v1.1