top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What does "profil" means in C++

+2 votes
329 views

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?

posted Mar 10, 2016 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button
"g++ -E -Wp,-dD" is your friend.

1 Answer

0 votes

If I replace "profil" by "profile" as the class name it works on all compilers.

g++ -E -Wp,-dD" is your friend.

answer Mar 24, 2016 by Manikandan J
...