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
96a251b3
Commit
96a251b3
authored
Feb 13, 2015
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix shadow and sign-conversion warnings
parent
96514c29
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
unit_testing/test_uniform_type.cpp
unit_testing/test_uniform_type.cpp
+4
-4
No files found.
unit_testing/test_uniform_type.cpp
View file @
96a251b3
...
@@ -50,7 +50,7 @@ struct test_struct {
...
@@ -50,7 +50,7 @@ struct test_struct {
using
namespace
caf
;
using
namespace
caf
;
template
<
class
T
>
template
<
class
T
>
std
::
string
tostr
(
T
value
,
s
ize_t
fieldwidth
=
2
)
{
std
::
string
tostr
(
T
value
,
s
td
::
streamsize
fieldwidth
=
2
)
{
std
::
ostringstream
oss
;
std
::
ostringstream
oss
;
oss
.
width
(
fieldwidth
);
oss
.
width
(
fieldwidth
);
oss
<<
value
;
oss
<<
value
;
...
@@ -90,10 +90,10 @@ bool check_types(const std::map<std::string, uint16_t>& expected) {
...
@@ -90,10 +90,10 @@ bool check_types(const std::map<std::string, uint16_t>& expected) {
if
(
i
==
last
)
{
if
(
i
==
last
)
{
return
dummy
;
return
dummy
;
}
}
std
::
ostringstream
oss
;
std
::
ostringstream
tmp
;
oss
<<
left
<<
setw
(
16
)
<<
i
->
first
<<
"["
<<
tostr
(
i
->
second
)
<<
"]"
;
tmp
<<
left
<<
setw
(
16
)
<<
i
->
first
<<
"["
<<
tostr
(
i
->
second
)
<<
"]"
;
++
i
;
++
i
;
return
oss
.
str
();
return
tmp
.
str
();
};
};
while
(
fi
!=
fe
||
ei
!=
ee
)
{
while
(
fi
!=
fe
||
ei
!=
ee
)
{
CAF_PRINT
(
out
(
fi
,
fe
)
<<
" | "
<<
out
(
ei
,
ee
));
CAF_PRINT
(
out
(
fi
,
fe
)
<<
" | "
<<
out
(
ei
,
ee
));
...
...
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