Skip to content

Commit

Permalink
色々対応
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed Sep 16, 2024
1 parent 959d160 commit 003d15a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include <boost/preprocessor/stringize.hpp>

// WebRTC
#include <rtc_base/helpers.h>
#include <rtc_base/crypto_random.h>

#include "zakuro.h"
#include "zakuro_version.h"
Expand Down Expand Up @@ -240,7 +240,7 @@ void Util::ParseArgs(const std::vector<std::string>& cargs,

auto is_json = CLI::Validator(
[](std::string input) -> std::string {
boost::json::error_code ec;
boost::system::error_code ec;
boost::json::parse(input, ec);
if (ec) {
return "Value " + input + " is not JSON Value";
Expand Down
1 change: 1 addition & 0 deletions src/virtual_client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#include <modules/audio_device/include/audio_device_factory.h>
#include <modules/audio_processing/include/audio_processing.h>
#include <rtc_base/logging.h>
#include <rtc_base/crypto_random.h>

std::shared_ptr<VirtualClient> VirtualClient::Create(
VirtualClientConfig config) {
Expand Down

0 comments on commit 003d15a

Please sign in to comment.