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/tab-parser.cxx | 35 +++++++++++++++++++++++++++++++---- 1 file changed, 31 insertions(+), 4 deletions(-) (limited to 'libbutl/tab-parser.cxx') diff --git a/libbutl/tab-parser.cxx b/libbutl/tab-parser.cxx index bf0a7dd..183e6d7 100644 --- a/libbutl/tab-parser.cxx +++ b/libbutl/tab-parser.cxx @@ -2,12 +2,39 @@ // 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 #include +#endif + +// Other includes. + +#ifdef __cpp_modules +module butl.tab_parser; + +// Only imports additional to interface. +#ifdef __clang__ +#ifdef __cpp_lib_modules +import std.core; +import std.io; +#endif +#endif -#include +import butl.string_parser; +#else +#include +#endif using namespace std; @@ -53,7 +80,7 @@ namespace butl { sp = string_parser::parse_quoted_position (s, false); } - catch (const invalid_string& e) + catch (const string_parser::invalid_string& e) { throw parsing (name_, line_, e.position + 1, e.what ()); } @@ -69,7 +96,7 @@ namespace butl // tab_parsing // - static string + static inline string format (const string& n, uint64_t l, uint64_t c, const string& d) { ostringstream os; -- cgit v1.1