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 7414513
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T07:06:47+00:00 2026-05-29T07:06:47+00:00

So, I have the following code which fails to compile on gcc 4.2.1 on

  • 0

So, I have the following code which fails to compile on gcc 4.2.1 on OSX. The error I get is:

testref.cpp: In function ‘int main()’:
testref.cpp:10: error: ‘A::A(const A&)’ is private
testref.cpp:20: error: within this context

And here’s the code

#include <cstdio>

class A {
public:
    A() { i=0; printf("A ctor\n"); }
    ~A() { printf("A dtor\n"); }

private:
    A(const A& other) { i=other.i; printf("A COPY CTOR\n"); }
    A& operator=(const A& other) { i=other.i; printf("A COPY operator\n"); return *this; }
private:
    int i;
};

void f(const A &aref) {
    printf("dummy\n");
} 

int main() {
    f(A());
    return 0; 
}

This copy constructor is not needed in this case, as f gets a reference (I made it public to see if it gets called and it doesn’t).
Additionally, I’ve made f get the object by value, and still neither copy constructor nor operator= gets called. I suspect this may have something to do with optimizations.
Any suggestions?
Thanks.

  • 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-05-29T07:06:48+00:00Added an answer on May 29, 2026 at 7:06 am

    You’ve fallen into a subtle standards issue. GCC is right, but the error is pretty bad: Compiling the same with clang gives:

    test.cpp:20:7: warning: C++98 requires an accessible copy constructor for class
                  'A' when binding a reference to a temporary; was private
    

    Edit: I don’t have my standards copy nearby to give you the full reasoning. Hopefully someone else (or Google) can.

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

Sidebar

Related Questions

Following code fails with a error message : t.cpp: In function `void test()': t.cpp:35:
I'm trying to use opengl in C#. I have following code which fails with
I have the following code: int main(void) { struct { int x; } a,
I have following code which works for radio buttons but need to be changed
I want to know is below code correct ? I have following code which
I have following Code Block Which I tried to optimize in the Optimized section
I have the following code which throws an exception COM Exception was unhandled in
I have the following code which inserts multiple records into MySQL: foreach ($_POST AS
I have the following code which sometimes return as true and sometimes doesn't. Any
I have the following code which works just fine when the method is POST,

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.