diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-07-30 19:43:12 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-07-30 19:43:12 +0200 |
commit | 8c1b8e19c68a4093c62e64d1716f484b87acac9d (patch) | |
tree | 501c3980a1696068f18aa0e0f0b07016210cca1d | |
parent | 143d2f473fb92256d33f91266aa9d1829bc9fce1 (diff) |
Work around Clang 3.8 const init issue
-rw-r--r-- | libbutl/project-name.mxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbutl/project-name.mxx b/libbutl/project-name.mxx index 943ec8c..0ed94e2 100644 --- a/libbutl/project-name.mxx +++ b/libbutl/project-name.mxx @@ -54,7 +54,7 @@ LIBBUTL_MODEXPORT namespace butl // Create a special empty project name. // - project_name () = default; + project_name () {} // For Clang 3.8 (const initialization). // Create an arbitrary string that can be used in contexts that expect a // project name. For example, a project name pattern for use in ODB query |