Comment #1 on issue 3656 by [email protected]: Problems building Lilypond 2.17.28 with libc++ for use with llvm
http://code.google.com/p/lilypond/issues/detail?id=3656

From David K

Looks like a rather fundamental problem in the C++ library to me.  Note
that this is triggered by use of the template function

template<typename T>
void
concat (vector<T> &v, vector<T> const &w)
{
  v.insert (v.end (), w.begin (), w.end ());
}

Now C++11 could likely be using w.cbegin () and w.cend () as a bug fix,
but that does not exist in the C++ standards we still use, and besides,
this usage should _never_ _ever_ lead to those kind of error messages.
Report this to the clang developers.

--
David Kastrup

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

Reply via email to