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
7d426e0b
Commit
7d426e0b
authored
Aug 28, 2019
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use auto consequently
parent
36131d16
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
libcaf_core/test/read_ini.cpp
libcaf_core/test/read_ini.cpp
+4
-4
No files found.
libcaf_core/test/read_ini.cpp
View file @
7d426e0b
...
@@ -106,7 +106,7 @@ log_type make_log(Ts&&... xs) {
...
@@ -106,7 +106,7 @@ log_type make_log(Ts&&... xs) {
}
}
// Tests basic functionality.
// Tests basic functionality.
const
char
*
ini0
=
R"(
const
auto
ini0
=
R"(
[1group]
[1group]
1value=321
1value=321
[_foo]
[_foo]
...
@@ -205,7 +205,7 @@ const auto ini0_log = make_log(
...
@@ -205,7 +205,7 @@ const auto ini0_log = make_log(
// clang-format on
// clang-format on
// Tests nested parameters.
// Tests nested parameters.
const
char
*
ini1
=
R"(
const
auto
ini1
=
R"(
foo {
foo {
bar = {
bar = {
value1 = 1
value1 = 1
...
@@ -242,11 +242,11 @@ const auto ini1_log = make_log(
...
@@ -242,11 +242,11 @@ const auto ini1_log = make_log(
);
);
// clang-format on
// clang-format on
const
char
*
ini2
=
"#"
;
const
auto
ini2
=
"#"
;
const
auto
ini2_log
=
make_log
();
const
auto
ini2_log
=
make_log
();
const
char
*
ini3
=
"; foobar
\n
!"
;
const
auto
ini3
=
"; foobar
\n
!"
;
const
auto
ini3_log
=
make_log
();
const
auto
ini3_log
=
make_log
();
...
...
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