Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

std::reverse_copy "error: function call has aggregate value"

Tags:

c++

stl

#include <vector>
#include <iostream>
#include <algorithm>
#include <iterator>
using namespace std;

int main()
{
  int arrA[] = {1, 2, 3, 4, 5, 6, 7, 8, 9};
  vector<int> vecIntA(arrA, arrA+sizeof(arrA)/sizeof(arrA[0]));

  vector<int> vecIntB(vecIntA.size());

  //copy((vecIntA.rbegin()+3).base(), (vecIntA.rbegin()+1).base(),  vecIntB.begin()); // OK    

  vector<int>::iterator s = (vecIntA.rbegin()+3).base();
  vector<int>::iterator e = (vecIntA.rbegin()+1).base();
  cout << "s: " << *s << ", e: " << *e << endl;
  reverse_copy(s, e,  vecIntB.begin()); // error: function call has aggregate value

  //copy(vecIntB.begin(), vecIntB.end(), ostream_iterator<int>(cout, ","));
  cout << endl;
}

Question> how to fix the issue of "error: function call has aggregate value"?

The above code works under VS2010, but not ubuntu12.04 + clang++3.2 or g++4.6.3

Thank you

// Update //

// Reference: Flags to enable thorough and verbose g++ warnings

g++ $1.cpp -o $1 -g -O -Wall -Weffc++ -pedantic  \
-pedantic-errors -Wextra  -Wall -Waggregate-return -Wcast-align \
-Wcast-qual  -Wchar-subscripts  -Wcomment -Wconversion \
-Wdisabled-optimization \
-Werror -Wfloat-equal  -Wformat  -Wformat=2 \
-Wformat-nonliteral -Wformat-security  \
-Wformat-y2k \
-Wimport  -Winit-self  -Winline \
-Winvalid-pch   \
-Wunsafe-loop-optimizations  -Wlong-long -Wmissing-braces \
-Wmissing-field-initializers -Wmissing-format-attribute   \
-Wmissing-include-dirs -Wmissing-noreturn \
-Wpacked  -Wpadded -Wparentheses  -Wpointer-arith \
-Wredundant-decls -Wreturn-type \
-Wsequence-point  -Wshadow -Wsign-compare  -Wstack-protector \
-Wstrict-aliasing -Wstrict-aliasing=2 -Wswitch  -Wswitch-default \
-Wswitch-enum -Wtrigraphs  -Wuninitialized \
-Wunknown-pragmas  -Wunreachable-code -Wunused \
-Wunused-function  -Wunused-label  -Wunused-parameter \
-Wunused-value  -Wunused-variable  -Wvariadic-macros \
-Wvolatile-register-var  -Wwrite-strings \
-std=c++0x
like image 808
q0987 Avatar asked Jun 18 '13 04:06

q0987


1 Answers

-Waggregate-return -Werror 

you specified returning aggregate value to be an error. While in theory it is not.

-Waggregate-return
Warn if any functions that return structures or unions are defined or called. (In languages where you can return an array, this also elicits a warning.)

You probably want to remove this flag

like image 200
log0 Avatar answered Sep 28 '22 06:09

log0