Re: [Mixxx-devel] c++11 support is here

2015-06-07 Thread Daniel Schürmann
Hi, I think we use always the copy-initialization for pod types inside Mixxx (Except initializations lists) int value = 4; For me this is the best readable version and is exactly what the underlying machine code does. The value 4 is copied from the text segment to a cpu register. Now we have

Re: [Mixxx-devel] formating source Code with clang-format

2015-06-07 Thread Tuukka Pasanen
Hello, Can you port this to astyle because not everyone are using Emacs or something silmilar for more convient use. Thanks, Tuukka 2015-06-06 21:43 GMT+03:00 Max Linke max_li...@gmx.de: Hi We had some recurring discussions in the PR about coding style. I have recently started to rely on

Re: [Mixxx-devel] formating source Code with clang-format

2015-06-07 Thread Max Linke
There is really no way to port this. It is the configuration file for `clang-format` a separate program. Since I only use emacs I don't know how to best use it in other editors. you can find more information here http://clang.llvm.org/docs/ClangFormat.html Just try to google clang-format +

Re: [Mixxx-devel] release progress

2015-06-07 Thread Be
I tested it and it helps, but adding these options feels like putting bandages on a bigger design issues that are not very easy to solve. There are so many buttons for skin options at the top that it's kinda overwhelming. However, I think trying to implement better solutions to those design

Re: [Mixxx-devel] c++11 support is here

2015-06-07 Thread Max Linke
On 06/07/2015 10:28 PM, Daniel Schürmann wrote: Hi, I think we use always the copy-initialization for pod types inside Mixxx Sure? I don't currently recall what the compiler has to do if we explicitly define a copy constructor, is the copy or implicitly generated move constructor used? For