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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T12:44:05+00:00 2026-05-21T12:44:05+00:00

I get the warning from the title on Sun Studio 12.1 with the following

  • 0

I get the warning from the title on Sun Studio 12.1 with the following snippet:

#include <vector>

std::vector<int> g()
{
  std::vector<int> result;
  result.push_back(5);
  return result;
}

int main()
{
  int b = g()[0];  // <- Warning in this line

  return b;
}

Warning text is:

Warning: should not initialize a non-const reference with a temporary.

While I know that initialising a non-const reference with a temporary is a bad thing, I cannot see how that happens here. I know that [0] returns a reference to the first element of the vector which itself is temporary, but I fail to see what the problem is.

Can somebody explain

  • Why does to compiler complain?
  • Is it a legitimate warning?
    • If yes, what do I have to change?
    • If no, how can I silence it elegantly?
  • 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-21T12:44:06+00:00Added an answer on May 21, 2026 at 12:44 pm

    This Sun compiler looks very weird, it doesn’t seem legitimate at all to me. Ideone has no problem compiling it.

    Regarding the silencing part:

    std::vector<double> const tmp = g();
    int b = tmp[0];
    

    That is, introducing a named variable instead of leaving the temporary floating.

    EDIT:

    As suggested in comments, const-qualifying the return value might help.

    std::vector<double> const g();
    
    int main() {
      int b = g()[0];
      return b;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When loading the RTextTools package from CRAN, I get the following warnings: Warning messages:
I get a warning in MSVC++ when I try to read an integer from
I get the following warnings from my xCode project. How do i get rid
I get this error Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result
When I build my iPhone project, I get warnings from xcode about a few
I recently started Erlang, and I notice I constantly get Warning: variable X is
I get the warning childNodes is null or not an object' with different line
The exact warning I get is warning C4715: 'hand::show' : not all control paths
I get the warning warning, -s option given but default rule can be matched
I get this: Warning: session_start(): Cannot send session cookie - headers already sent by

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.