Wrapped init in std::set constructor

This commit is contained in:
William Speirs 2014-10-14 17:10:53 -04:00 committed by Clifford Wolf
parent 9cb2303799
commit 6433203b39
1 changed files with 2 additions and 2 deletions

View File

@ -32,14 +32,14 @@ struct WreduceConfig
WreduceConfig()
{
supported_cell_types = {
supported_cell_types = std::set<IdString>({
"$not", "$pos", "$neg",
"$and", "$or", "$xor", "$xnor",
"$shl", "$shr", "$sshl", "$sshr", "$shift", "$shiftx",
"$lt", "$le", "$eq", "$ne", "$eqx", "$nex", "$ge", "$gt",
"$add", "$sub", // "$mul", "$div", "$mod", "$pow",
"$mux", "$pmux"
};
});
}
};