Skip to content

Commit

Permalink
chore: English is too hard.
Browse files Browse the repository at this point in the history
  • Loading branch information
MistEO committed Oct 10, 2023
1 parent 1d507fe commit 04d9dcc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/MaaRpc/implement/Controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ Status ControllerImpl::create_custom(
#if defined(__APPLE__) && defined(__clang__) && __clang_major__ < 16
std::shared_ptr<CustomControllerInfo> info(new CustomControllerInfo{ stream, image_impl_ });
#else
// build error on macOS of Apple clang version 15.0.0 (clang-1500.0.40.1)
// build error of Apple clang version 15.0.0 (clang-1500.0.40.1) on macOS
auto info = std::make_shared<CustomControllerInfo>(stream, image_impl_);
#endif

Expand Down
2 changes: 1 addition & 1 deletion source/MaaRpc/implement/Instance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Status InstanceImpl::register_custom_recognizer(
#if defined(__APPLE__) && defined(__clang__) && __clang_major__ < 16
std::shared_ptr<CustomRecognizerInfo> info(new CustomRecognizerInfo{ request->init().name(), stream, image_impl_, syncctx_impl_ });
#else
// build error on macOS of Apple clang version 15.0.0 (clang-1500.0.40.1)
// build error of Apple clang version 15.0.0 (clang-1500.0.40.1) on macOS
auto info = std::make_shared<CustomRecognizerInfo>(request->init().name(), stream, image_impl_, syncctx_impl_);
#endif

Expand Down

0 comments on commit 04d9dcc

Please sign in to comment.