Skip to content

Commit

Permalink
修正
Browse files Browse the repository at this point in the history
  • Loading branch information
melpon committed Dec 16, 2024
1 parent 425aede commit 4861afd
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
7 changes: 3 additions & 4 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@
- [UPDATE] CMake を 3.30.5 にあげる
- @voluntas
- [UPDATE] Boost を 1.87.0 にあげる
- deadline_timer が非推奨になったため、websocket.h にインクルードを追加して利用可能にする
- boost/asio/deadline_timer.hpp
- boost/date_time/posix_time/posix_time.hpp
- @voluntas @torikizi
- boost::asio::deadline_timer が間接的にインクルードされなくなったので、websocket.h に boost/asio/deadline_timer.hpp のインクルードを追加して利用可能にする
- boost::json::error_code が削除されたので boost::system::error_code に置き換える
- @voluntas @torikizi @melpon
- [UPDATE] libwebrtc を m131.6778.4.0 にあげる
- H.265 Patch の修正に伴い、C++ SDK の H.265 に関する設定を変更
- examples と test に `rtc::CreateRandomString` のヘッダを追加
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ int main(int argc, char* argv[]) {

auto is_json = CLI::Validator(
[](std::string input) -> std::string {
boost::json::error_code ec;
boost::system::error_code ec;
boost::json::parse(input);
if (ec) {
return "Value " + input + " is not JSON Value";
Expand Down
2 changes: 1 addition & 1 deletion examples/sdl_sample/src/sdl_sample.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ int main(int argc, char* argv[]) {

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
2 changes: 1 addition & 1 deletion examples/sumomo/src/sumomo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ int main(int argc, char* argv[]) {

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: 0 additions & 1 deletion include/sora/websocket.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
#include <boost/beast/core/multi_buffer.hpp>
#include <boost/beast/websocket/ssl.hpp>
#include <boost/beast/websocket/stream.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>

#include "url_parts.h"
#include "version.h"
Expand Down

0 comments on commit 4861afd

Please sign in to comment.