launchdarkly / cpp-sdks

C++ Client/Server SDKs
Other
5 stars 2 forks source link

refactor: replace boost::json::error_code with boost::system::error_code #406

Closed cwaldren-ld closed 2 months ago

cwaldren-ld commented 2 months ago

The latest Boost 1.85 release has deprecated usage of boost::json::error_code, and since that causes warnings, our CI fails (since we have warnings-as-errors in CI.)

That type was just an alias for boost::system::error_code, so I've done a find and replace.