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
c361c9af
Commit
c361c9af
authored
Jun 22, 2015
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix possible division by float zero
parent
8f15eaf5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
libcaf_test/caf/test/unit_test_impl.hpp
libcaf_test/caf/test/unit_test_impl.hpp
+6
-3
No files found.
libcaf_test/caf/test/unit_test_impl.hpp
View file @
c361c9af
...
...
@@ -405,9 +405,12 @@ bool engine::run(bool colorize,
break
;
}
}
auto
percent_good
=
static_cast
<
unsigned
>
(
double
(
100000
*
total_good
)
/
double
(
total_good
+
total_bad
))
/
1000.0
;
unsigned
percent_good
=
100
;
if
(
total_bad
>
0
)
{
auto
tmp
=
(
100000.0
*
total_good
)
/
static_cast
<
double
>
(
total_good
+
total_bad
);
percent_good
=
static_cast
<
unsigned
>
(
tmp
/
1000.0
);
}
auto
title
=
std
::
string
{
"summary"
};
auto
pad
=
std
::
string
((
bar
.
size
()
-
title
.
size
())
/
2
,
' '
);
auto
indent
=
std
::
string
(
24
,
' '
);
...
...
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