Am getting compilation errors for the following snippet of my C++ code.
struct Power{
  int power;
  int age;
  int operator-(const Power& p1)
  {
     return this->power - p1.power;
  }
};
int main() {
  Power p1;
  p1.power = 1;
  p1.age = 25;
  Power p2;
  p2.power = 2;
  p2.age = 26;
  std::cout<<std::minus<Power>()(p1, p2)<<std::endl;
}
build with c++11. cannot be built. error messages are:
 error: no match for ‘operator<<’ (operand types are ‘std::ostream {aka std::basic_ostream<char>}’ and ‘Power’)
  std::cout<<std::minus<Power>()(p1, p2)<<std::endl;
           ^
In file included from /usr/include/c++/5/iostream:39:0,
                 from rvaluereference.cpp:1:
/usr/include/c++/5/ostream:628:5: note: candidate: std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&&, const _Tp&) [with _CharT = char; _Traits = std::char_traits<char>; _Tp = Power] <near match>
     operator<<(basic_ostream<_CharT, _Traits>&& __os, const _Tp& __x)
     ^
/usr/include/c++/5/ostream:628:5: note:   conversion of argument 1 would be ill-formed:
rvaluereference.cpp:60:39: error: cannot bind ‘std::ostream {aka std::basic_ostream<char>}’ lvalue to ‘std::basic_ostream<char>&&’
.....
 
     
     
    