From 31c92781ac953cb83963cfe5ac30324579fa7b2d Mon Sep 17 00:00:00 2001 From: Billy Robert O'Neal III Date: Fri, 18 Dec 2020 10:07:02 -0800 Subject: [PATCH] Repair mojibake in expected.hpp The affected characters herein triggered warnings C:\Dev\vcpkg\buildtrees\opentracing\src\b67575dab0-0250653c81.clean\3rd_party\include\opentracing/expected/expected.hpp(1): warning C4828: The file contains a character starting at offset 0x4a77 that is illegal in the current source character set (codepage 65001). --- 3rd_party/include/opentracing/expected/expected.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/3rd_party/include/opentracing/expected/expected.hpp b/3rd_party/include/opentracing/expected/expected.hpp index 8283a77..0d21d43 100644 --- a/3rd_party/include/opentracing/expected/expected.hpp +++ b/3rd_party/include/opentracing/expected/expected.hpp @@ -778,13 +778,13 @@ class expected // expected())),E> map(F&& func) ; // template -// ’see below’ bind(F&& func); +// 'see below' bind(F&& func); // template // expected catch_error(F&& f); // template -// ’see below’ then(F&& func); +// 'see below' then(F&& func); private: bool has_value_; @@ -955,9 +955,9 @@ class expected return ! has_value() && std::is_base_of< Ex, decltype( get_unexpected().value() ) >::value; } -// template constexpr ’see below’ unwrap() const&; +// template constexpr 'see below' unwrap() const&; // -// template ’see below’ unwrap() &&; +// template 'see below' unwrap() &&; // factories @@ -968,13 +968,13 @@ class expected // expected map(F&& func) ; // // template -// ’see below’ bind(F&& func) ; +// 'see below' bind(F&& func) ; // // template // expected catch_error(F&& f); // // template -// ’see below’ then(F&& func); +// 'see below' then(F&& func); private: bool has_value_;