K 10 svn:author V 3 dim K 8 svn:date V 27 2016-01-27T19:52:04.276513Z K 7 svn:log V 361 In x11/leechcraft, change the syntax of C++11 braced initializers with multiple elements to correspond to C++ WG paper N3922. E.g, instead of: auto foo { 1, 2, 3, 4 }; one should write: auto foo = { 1, 2, 3, 4 }; This makes the port compile with clang 3.8.0 and higher, or gcc 5.0 and higher. Approved by: vg (maintainer) PR: 206650 MFH: 2016Q1 END