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
49ac3643
Commit
49ac3643
authored
Jun 24, 2020
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build on Debian 9 and MSVC
parent
cd0ac797
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
libcaf_core/test/detail/parser/read_config.cpp
libcaf_core/test/detail/parser/read_config.cpp
+1
-1
libcaf_core/test/detail/parser/read_string.cpp
libcaf_core/test/detail/parser/read_string.cpp
+1
-1
No files found.
libcaf_core/test/detail/parser/read_config.cpp
View file @
49ac3643
...
...
@@ -140,7 +140,7 @@ middleman {
}
)"
;
constexpr
const
st
d
::
st
ring_view
conf1
=
R"(
constexpr
const
string_view
conf1
=
R"(
{
"foo" : {
"bar" : 1,
...
...
libcaf_core/test/detail/parser/read_string.cpp
View file @
49ac3643
...
...
@@ -96,7 +96,7 @@ CAF_TEST(quoted string with escaped characters) {
CAF_CHECK_EQUAL
(
p
(
R"("a\tb\tc")"
),
"a
\t
b
\t
c"
_s
);
CAF_CHECK_EQUAL
(
p
(
R"("a\nb\r\nc")"
),
"a
\n
b
\r\n
c"
_s
);
CAF_CHECK_EQUAL
(
p
(
R"("a\\b")"
),
"a
\\
b"
_s
);
CAF_CHECK_EQUAL
(
p
(
R"("'hello' \"world\"")
"
),
"'hello'
\"
world
\"
"
_s
);
CAF_CHECK_EQUAL
(
p
(
"
\"
'hello'
\\\"
world
\\\"\"
"
),
"'hello'
\"
world
\"
"
_s
);
CAF_CHECK_EQUAL
(
p
(
R"('a\tb\tc')"
),
"a
\t
b
\t
c"
_s
);
CAF_CHECK_EQUAL
(
p
(
R"('a\nb\r\nc')"
),
"a
\n
b
\r\n
c"
_s
);
CAF_CHECK_EQUAL
(
p
(
R"('a\\b')"
),
"a
\\
b"
_s
);
...
...
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