Commit 67b5f6ea authored by Dominik Charousset's avatar Dominik Charousset

announce `long double` per default

parent f0733a45
...@@ -636,6 +636,7 @@ uniform_type_info_map::uniform_type_info_map() { ...@@ -636,6 +636,7 @@ uniform_type_info_map::uniform_type_info_map() {
// insert type infos for "built-in" types // insert type infos for "built-in" types
helper.insert_builtin<float>(); helper.insert_builtin<float>();
helper.insert_builtin<double>(); helper.insert_builtin<double>();
helper.insert_builtin<long double>();
helper.insert_builtin<std::string>(); helper.insert_builtin<std::string>();
helper.insert_builtin<std::u16string>(); helper.insert_builtin<std::u16string>();
helper.insert_builtin<std::u32string>(); helper.insert_builtin<std::u32string>();
......
...@@ -69,13 +69,13 @@ int main() { ...@@ -69,13 +69,13 @@ int main() {
// the uniform_type_info implementation is correct // the uniform_type_info implementation is correct
std::set<std::string> expected = { std::set<std::string> expected = {
"bool", "bool",
"@_::foo", // <anonymous namespace>::foo "@_::foo", // <anonymous namespace>::foo
"@i8", "@i16", "@i32", "@i64", // signed integer names "@i8", "@i16", "@i32", "@i64", // signed integer names
"@u8", "@u16", "@u32", "@u64", // unsigned integer names "@u8", "@u16", "@u32", "@u64", // unsigned integer names
"@str", "@u16str", "@u32str", // strings "@str", "@u16str", "@u32str", // strings
"@strmap", // string containers "@strmap", // string containers
"float", "double", // floating points "float", "double", "long double", // floating points
"@0", // cppa::util::void_type "@0", // cppa::util::void_type
// default announced cppa types // default announced cppa types
"@atom", // cppa::atom_value "@atom", // cppa::atom_value
"@<>", // cppa::any_tuple "@<>", // cppa::any_tuple
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment