Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
67b5f6ea
Commit
67b5f6ea
authored
Nov 02, 2012
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
announce `long double` per default
parent
f0733a45
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
7 deletions
+8
-7
src/uniform_type_info.cpp
src/uniform_type_info.cpp
+1
-0
unit_testing/test__uniform_type.cpp
unit_testing/test__uniform_type.cpp
+7
-7
No files found.
src/uniform_type_info.cpp
View file @
67b5f6ea
...
@@ -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
>
();
...
...
unit_testing/test__uniform_type.cpp
View file @
67b5f6ea
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment