Uh oh!
There was an error while loading. Please reload this page.
Add some more C++ extensions - #15
Conversation
Google C++ style guide[1] requires .cc extension and also GCC supports few more extensions - .cxx, .CPP, c++, .cp and .C [1] https://google.github.io/styleguide/cppguide.html#File_Names [2] https://gcc.gnu.org/onlinedocs/gcc-9.2.0/gcc/Overall-Options.html#Overall-Options
VictorRodriguez
commented
Nov 19, 2019
Hi @velichkov |
ahkok
commented
Nov 19, 2019
It seems unnecessary to duplicate the same source code file 7x. Perhaps we can make a temporary copy for each iteration and use that to validate, instead. Or even symlinks? |
velichkov
commented
Nov 19, 2019
Hi @ahkok,
Agree.
I'll try to to rework it with temporary copies.
With symlinks it would be tricky as patch refuses to patch symlinks and with and with |
VictorRodriguez
commented
Nov 19, 2019
Agree on comments from @ahkok we can make a temporary copy for each iteration. Thanks a lot for the patch ! |
Google C++ style guide requires
.ccextension and alsogccsupports few more extensions -.cxx,.CPP,c++,.cpand.CAlso improve the testing instructions in the README.md