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
043ddd48
Commit
043ddd48
authored
Jun 09, 2023
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos
parent
640e8bd2
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
9 additions
and
9 deletions
+9
-9
examples/CMakeLists.txt
examples/CMakeLists.txt
+1
-1
libcaf_core/caf/actor_control_block.hpp
libcaf_core/caf/actor_control_block.hpp
+1
-1
libcaf_core/caf/optional.hpp
libcaf_core/caf/optional.hpp
+1
-1
libcaf_core/src/actor_system.cpp
libcaf_core/src/actor_system.cpp
+1
-1
libcaf_core/test/function_view.cpp
libcaf_core/test/function_view.cpp
+1
-1
libcaf_io/caf/io/fwd.hpp
libcaf_io/caf/io/fwd.hpp
+1
-1
libcaf_io/caf/io/network/multiplexer.hpp
libcaf_io/caf/io/network/multiplexer.hpp
+1
-1
manual/TypeInspection.rst
manual/TypeInspection.rst
+1
-1
scripts/obs-commit-version.sh
scripts/obs-commit-version.sh
+1
-1
No files found.
examples/CMakeLists.txt
View file @
043ddd48
...
...
@@ -16,7 +16,7 @@ endfunction()
# -- examples for CAF::core ----------------------------------------------------
# introduct
iona
ry applications
# introduct
o
ry applications
add_core_example
(
. aout
)
add_core_example
(
. hello_world
)
...
...
libcaf_core/caf/actor_control_block.hpp
View file @
043ddd48
...
...
@@ -85,7 +85,7 @@ public:
"sizeof(node_id) != sizeof(size_t)"
);
static_assert
(
sizeof
(
data_destructor
)
==
sizeof
(
void
*
),
"functi
i
on pointer and regular pointers have different size"
);
"function pointer and regular pointers have different size"
);
/// Returns a pointer to the actual actor instance.
abstract_actor
*
get
()
{
...
...
libcaf_core/caf/optional.hpp
View file @
043ddd48
...
...
@@ -20,7 +20,7 @@ namespace caf {
template
<
class
T
>
class
optional
{
public:
/// Typ
def
for `T`.
/// Typ
e alias
for `T`.
using
type
=
T
;
using
value_type
=
T
;
...
...
libcaf_core/src/actor_system.cpp
View file @
043ddd48
...
...
@@ -132,7 +132,7 @@ behavior config_serv_impl(stateful_actor<kvstate>* self) {
// A spawn server allows users to spawn actors dynamically with a name and a
// message containing the data for initialization. By accessing the spawn server
// on another node, users can sp
wa
n actors remotely.
// on another node, users can sp
aw
n actors remotely.
struct
spawn_serv_state
{
static
inline
const
char
*
name
=
"caf.system.spawn-server"
;
...
...
libcaf_core/test/function_view.cpp
View file @
043ddd48
...
...
@@ -75,7 +75,7 @@ struct fixture {
BEGIN_FIXTURE_SCOPE
(
fixture
)
CAF_TEST
(
empty_function_
f
iew
)
{
CAF_TEST
(
empty_function_
v
iew
)
{
function_view
<
calculator
>
f
;
CHECK_EQ
(
f
(
10
,
20
),
sec
::
bad_function_call
);
}
...
...
libcaf_io/caf/io/fwd.hpp
View file @
043ddd48
...
...
@@ -12,7 +12,7 @@
#include "caf/type_id.hpp"
// Unfortunately required, because we cannot add a forward declaration for the
// enum protol::network that we need for assigning a type ID to
// enum proto
co
l::network that we need for assigning a type ID to
// io::network::address_listing.
#include "caf/io/network/protocol.hpp"
...
...
libcaf_io/caf/io/network/multiplexer.hpp
View file @
043ddd48
...
...
@@ -97,7 +97,7 @@ public:
/// Creates an instance using the networking backend compiled with CAF.
static
std
::
unique_ptr
<
multiplexer
>
make
(
actor_system
&
sys
);
/// Exec
t
utes all pending events without blocking.
/// Executes all pending events without blocking.
/// @returns `true` if at least one event was called, `false` otherwise.
virtual
bool
try_run_once
()
=
0
;
...
...
manual/TypeInspection.rst
View file @
043ddd48
...
...
@@ -451,7 +451,7 @@ directly on the underlying type of the ``enum class`` otherwise.
monday,
tuesday,
wednesday,
thurday,
thur
s
day,
friday,
saturday,
sunday,
...
...
scripts/obs-commit-version.sh
View file @
043ddd48
...
...
@@ -83,7 +83,7 @@ elif [ "$1" = "--nightly" ] ; then
packageVersion
=
"
${
versionAsStr
}
.
$(
date
+%Y%m%d
)
"
else
# Don't prevent other branches from building, but issue a warning.
echo
"Use with either '--nightly' or '--release'. Exit
t
ing."
>
&2
echo
"Use with either '--nightly' or '--release'. Exiting."
>
&2
exit
fi
...
...
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