Use cname instead of name.h in sources

2015-04-01 Thread Alex Rukletsov
In Mesos sources we use c-style C headers (stdlib.h), as opposed to c++-style (cstdlib). C++11 Standard 17.6.1.2 p4, p8, and reference 177 hint that cname is a preferred form for C++ programs. However this may require adding std prefix everywhere, since according to the Standard cname headers may

Re: Use cname instead of name.h in sources

2015-04-01 Thread Alexander Rojas
I think is important mention the implications. The change doesn’t only imply to change the include headers, but every function, struct and class used from the c++ style headers will need to be prefixed with the std which in turn will messed with the git blame. Not to mention that, while most