今日AppleはXcodeのコマンドラインツールをアップデートし、clangを318.0.58から318.0.61にアップグレードします。Clangの初期設定リスト
初期化リストを使用しようとしましたが、以下のコードをコンパイルできません。
#include <iostream>
#include <random>
#include <initializer_list>
int main()
{
std::mt19937 rng(time(NULL));
std::initializer_list<double> probabilities =
{
0.5, 0.1, 0.1, 0.1, 0.1, 0.1
};
std::discrete_distribution<> cheat_dice (probabilities);
int a[6] = { };
for (int i = 0 ; i != 1000; ++i)
{
++a[cheat_dice(rng)];
}
for (int i = 0; i != 6; ++i)
{
std::cout << i + 1 << "=" << a[i] << std::endl;
}
}
次に、私はコンパイルしようとしました。一方
エラーログ
foo.cpp:9:10: error: no member named 'initializer_list' in namespace 'std'
std::initializer_list<double> probabilities =
~~~~~^
foo.cpp:9:33: error: expected '(' for function-style cast or type construction
std::initializer_list<double> probabilities =
~~~~~~^
foo.cpp:9:35: error: use of undeclared identifier 'probabilities'
std::initializer_list<double> probabilities =
^
foo.cpp:10:5: error: expected expression
{
^
foo.cpp:14:46: error: use of undeclared identifier 'probabilities'
std::discrete_distribution<> cheat_dice (probabilities);
^
5 errors generated.
、私はGCC-4.7.1-RC-20120606とコードの上にコンパイルすることができます。
$ g++ -std=c++11 foo.cpp
Appleのclangサポート初期化リストはありませんか? クランバージョン:clang
コマンドラインの一部として(@jweyrichが正しく指摘したように)-std=c++0x
を指定することで
$ clang++ -v
Apple clang version 3.1 (tags/Apple/clang-318.0.61) (based on LLVM 3.1svn)
Target: x86_64-apple-darwin11.4.0
Thread model: posix
'認識することができませんAppleの打ち鳴らす-std = C++ '11 – user1214292
user1214292 @:それは'認識-std = C++しかし0xです。 – jweyrich
@jweyrichしかし、結果は変わらないでしょう:( – user1214292