I've a strange problem in C++ using a class name: profil. I'm unable to find if this is a C++ keyword and what it means in C++ in my C++ books (B. Stroustrup "le langage C++" book, Stephen Prata C++ primer + book....) and google do not help with such widely used word....
My test program compile successfully with g++ 4.8.2 but do not compile with g++ 4.4. nor 4.5.1. It do not compile with intel compilers too. If I replace "profil" by "profile" as the class name it works on all compilers.
Any pointer?