From c09cd7512491cee1e82c1ad8128ce9fd4bc3f79b Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 22 Sep 2017 23:32:28 +0200 Subject: Initial modularization with both Clang and VC hacks Note: gave up on VC about half way though. --- libbutl/manifest-parser.cxx | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) (limited to 'libbutl/manifest-parser.cxx') diff --git a/libbutl/manifest-parser.cxx b/libbutl/manifest-parser.cxx index 304815a..cea71b6 100644 --- a/libbutl/manifest-parser.cxx +++ b/libbutl/manifest-parser.cxx @@ -2,10 +2,36 @@ // copyright : Copyright (c) 2014-2017 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file -#include +#ifndef __cpp_modules +#include +#endif #include + +#ifndef __cpp_lib_modules +#include +#include +#include +#include + #include +#endif + +// Other includes. + +#ifdef __cpp_modules +module butl.manifest_parser; + +// Only imports additional to interface. +#ifdef __clang__ +#ifdef __cpp_lib_modules +import std.core; +import std.io; +#endif +import butl.char_scanner; +#endif + +#endif using namespace std; @@ -410,7 +436,7 @@ namespace butl // manifest_parsing // - static string + static inline string format (const string& n, uint64_t l, uint64_t c, const string& d) { ostringstream os; -- cgit v1.1