You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#warning "tl_expected/expected.hpp is deprecated. Use <tl/expected.hpp> from libexpected-dev, or <rcpputils/tl_expected/expected.hpp> if the system header is not available."
16
+
// If the system header is available, redirect to it.
17
+
// Otherwise, fall back to the vendored version with a deprecation warning.
18
+
#if __has_include(<tl/expected.hpp>)
20
19
#include<tl/expected.hpp>
21
20
#else
21
+
#warning "tl_expected/expected.hpp is deprecated. Please install libexpected-dev and use <tl/expected.hpp> instead."
0 commit comments