Унифицированная инициализация с {} сообщением о неиспользуемой переменной

Компиляция этого кода с помощью g++ 4.7.0 ( -Wall -Wextra -Werror -Wconversion -std=c++11):

#include <iostream>  // std::cout, std::endl
#include <string>    // std::string
#include <utility>   // std::move

void out(std::string const &message)
{
   static int count{0};
   std::cout << count++ << " = " << message << std::endl;
}

struct Foo
{
   Foo()                         {out("constructor");}
  ~Foo()                         {out("destructor");}
   Foo(Foo const &)              {out("copy constructor");}
   Foo & operator=(Foo const &)  {out("copy via assignment"); return *this;}
   Foo(Foo &&)                   {out("move constructor");}
   Foo & operator=(Foo &&)       {out("move via assignment"); return *this;}
};

int main()
{
   auto bar{std::move(Foo())};
   out("exiting main");
}

... приводит к следующая ошибка:

error: unused variable 'bar' [-Werror=unused-variable]

Я могу устранить ошибку, изменив инициализацию barна любое из следующего:

/* 0 */ auto bar(std::move(Foo()));
/* 1 */ Foo bar{std::move(Foo())};
/* 2 */ Foo bar(std::move(Foo()));
/* 3 */ auto bar = std::move(Foo());
/* 4 */ Foo bar = std::move(Foo());
/* 5 */ auto bar __attribute__((unused)) {std::move(Foo())};

После изменения инициализации barвывод будет always:

0 = constructor
1 = move constructor
2 = destructor
3 = exiting main
4 = destructor

Почему исходная barинициализация сообщает о неиспользуемой переменной?

6
задан Matt Tardiff 18 March 2012 в 16:50
поделиться