Skip to content
Snippets Groups Projects
Commit 65fdaf25 authored by namark's avatar namark
Browse files

Workaround for a bug in clang.

parent b9f05caf
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,10 @@ namespace simple::graphical
using base::base;
// TODO: workaround for clang bug, that prevents inheriting the default constructor
// https://bugs.llvm.org/show_bug.cgi?id=38673
constexpr explicit color_vector() = default;
constexpr explicit color_vector(const base& other)
: base(other)
{}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment