From e7688fc3efaa79b3236b9a3775ef1a0ffaeed1b1 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 22 May 2015 15:09:04 +0200 Subject: Some hoop-jumping to make clang happy --- build/path | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'build/path') diff --git a/build/path b/build/path index 94af711..f107391 100644 --- a/build/path +++ b/build/path @@ -230,9 +230,11 @@ namespace build typedef path_traits traits; - // Construct special empty path. + // Construct special empty path. Note that we have to provide our + // own implementation rather than using '=default' to make clang + // allow default-initialized const instances of this type. // - basic_path () = default; + basic_path () {}; explicit basic_path (C const* s): base_type (s) {init ();} -- cgit v1.1