We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1addca3 + e0d7f52 commit c9720caCopy full SHA for c9720ca
test/Interop/Cxx/stdlib/Inputs/std-optional.h
@@ -3,10 +3,10 @@
3
4
#include <optional>
5
6
-using CxxOptional = std::optional<int>;
+using StdOptionalInt = std::optional<int>;
7
8
-inline CxxOptional getNonNilOptional() { return {123}; }
+inline StdOptionalInt getNonNilOptional() { return {123}; }
9
10
-inline CxxOptional getNilOptional() { return {std::nullopt}; }
+inline StdOptionalInt getNilOptional() { return {std::nullopt}; }
11
12
#endif // TEST_INTEROP_CXX_STDLIB_INPUTS_STD_OPTIONAL_H
0 commit comments