私はこのコードを持っています:
// initializer lists
#include <iostream>
#include <vector>
int main()
{
int values[] { 1, 2, 3 };
std::vector<int> v { 4, 5, 6 };
std::vector<std::string> cities {
"London", "New York", "Paris", "Tokio"
};
return 0;
}
ただし、gcc
コンパイラは配列unused variable
に対してのみ警告を出します。values
なぜ報告されないv
のですか?cities