Skip to content

Commit

Permalink
Satisfy inner-pedant
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaosvex committed Sep 10, 2024
1 parent c5f0a8e commit 440c6a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/libs/ports/src/upnp/SSDP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
namespace ember::ports::upnp {

SSDP::SSDP(const std::string& bind, boost::asio::io_context& ctx)
: ctx_(ctx), strand_(ctx),
: ctx_(ctx),
strand_(ctx),
transport_(ctx, bind, MULTICAST_IPV4_ADDR, DEST_PORT) {
ba::co_spawn(ctx_, read_broadcasts(), ba::detached);
}
Expand Down
2 changes: 1 addition & 1 deletion src/libs/protocol/include/protocol/SmartMessage.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace ember::protocol {
* SmartMessage allows for fast message access by selectively
* skipping the usual deserialisation step for POD types
* where all fields are correctly aligned for the target
* platform. This relies on the types being generated at
* architecture. This relies on the types being generated at
* the same time as the core.
*
* The provided buffer is presumed to be suitably aligned
Expand Down

0 comments on commit 440c6a5

Please sign in to comment.