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
d03d832f
Commit
d03d832f
authored
Dec 03, 2018
by
uentity
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mark recently added extern symbols as explicilty visible
parent
b10dcaa4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
6 deletions
+9
-6
libcaf_core/caf/detail/parser/chars.hpp
libcaf_core/caf/detail/parser/chars.hpp
+7
-5
libcaf_core/caf/type_nr.hpp
libcaf_core/caf/type_nr.hpp
+2
-1
No files found.
libcaf_core/caf/detail/parser/chars.hpp
View file @
d03d832f
...
...
@@ -20,6 +20,8 @@
#include <cstring>
#include "caf/config.hpp"
namespace
caf
{
namespace
detail
{
namespace
parser
{
...
...
@@ -44,15 +46,15 @@ inline bool in_whitelist(bool (*filter)(char), char ch) {
return
filter
(
ch
);
}
extern
const
char
alphanumeric_chars
[
63
];
CAF_API
extern
const
char
alphanumeric_chars
[
63
];
extern
const
char
alphabetic_chars
[
53
];
CAF_API
extern
const
char
alphabetic_chars
[
53
];
extern
const
char
hexadecimal_chars
[
23
];
CAF_API
extern
const
char
hexadecimal_chars
[
23
];
extern
const
char
decimal_chars
[
11
];
CAF_API
extern
const
char
decimal_chars
[
11
];
extern
const
char
octal_chars
[
9
];
CAF_API
extern
const
char
octal_chars
[
9
];
}
// namespace parser
}
// namespace detail
...
...
libcaf_core/caf/type_nr.hpp
View file @
d03d832f
...
...
@@ -24,6 +24,7 @@
#include <vector>
#include <cstdint>
#include "caf/config.hpp"
#include "caf/atom.hpp"
#include "caf/fwd.hpp"
#include "caf/timespan.hpp"
...
...
@@ -113,7 +114,7 @@ static constexpr size_t type_nrs = detail::tl_size<sorted_builtin_types>::value
+
1
;
/// List of all type names, indexed via `type_nr`.
extern
const
char
*
numbered_type_names
[];
CAF_API
extern
const
char
*
numbered_type_names
[];
template
<
uint32_t
R
,
uint16_t
...
Is
>
struct
type_token_helper
;
...
...
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