Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8184389
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T01:29:07+00:00 2026-06-07T01:29:07+00:00

Why would the compiler complain at the indicated line? class C { std::string s;

  • 0

Why would the compiler complain at the indicated line?

class C
{
    std::string s;
public:
    C() { s = "<not set>";}
    ~C() {}
    void Set(const std::string ss) { s=ss; }
    const std::string Get() { return s; }

    C &operator=(const C &c) { Set(c.Get()); return *this; }
    //error: passing ‘const C’ as ‘this’ argument of ‘const string C::Get()’
    // discards qualifiers [-fpermissive]


    //C &operator=(C &c) { Set(c.Get()); return *this; }   <-- works fine

};
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T01:29:09+00:00Added an answer on June 7, 2026 at 1:29 am

    You need to declare the function Get() to be const:

    const std::string Get() const { return s; }
    

    Even though Get() doesn’t change any member values, the compiler is instructed to only let you call functions that are explicitly labeled const.

    gcc is instructing you that you can override it’s complaint by using the argument -fpermissive; however, it’s generally better not to do this (or else why declare anything const at all?). Generally, it’s better to make sure every member function called on a const parameter is a const member function.

    This article concerning Const Correctness is very interesting.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

assume the following class is given: class Base{ public: Base() {} Base( const Base&
Why would some compilers insist on qualifying members public members of template base class
The C# 4.0 compiler does not complain about this (not even a warning): if(10.0
I would like to know why the Visual C++ compiler gets me an warning/error
I would like to conditionally compile certain parts of code based on Compiler Type
Sometimes it would be useful to know whether the compiler requires a pre-compiled header
Is there such macro in C++ (cross-compiler or compiler-specific): #if isclass(NameSpace::MyClass) Would be useful.
I just encountered this (made up code to demonstrate the problem): public ICollection<string> CreateCollection(int
I would like to have a generic Interpolator class which can interpolate between instances
Possible Duplicate: Class method and variable with same name, compile error in C++ not

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.