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
0ef1ee0e
Commit
0ef1ee0e
authored
May 14, 2018
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix parser name
parent
a1af43f0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
libcaf_core/test/read_bool.cpp
libcaf_core/test/read_bool.cpp
+4
-4
No files found.
libcaf_core/test/read_bool.cpp
View file @
0ef1ee0e
...
...
@@ -32,7 +32,7 @@ using detail::parser::ec;
namespace
{
struct
atom
_parser_consumer
{
struct
bool
_parser_consumer
{
bool
x
;
inline
void
value
(
bool
y
)
{
x
=
y
;
...
...
@@ -41,10 +41,10 @@ struct atom_parser_consumer {
using
res_t
=
variant
<
ec
,
bool
>
;
struct
atom
_parser
{
struct
bool
_parser
{
res_t
operator
()(
std
::
string
str
)
{
detail
::
parser
::
state
<
std
::
string
::
iterator
>
res
;
atom
_parser_consumer
f
;
bool
_parser_consumer
f
;
res
.
i
=
str
.
begin
();
res
.
e
=
str
.
end
();
detail
::
parser
::
read_bool
(
res
,
f
);
...
...
@@ -55,7 +55,7 @@ struct atom_parser {
};
struct
fixture
{
atom
_parser
p
;
bool
_parser
p
;
};
}
// namespace <anonymous>
...
...
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