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.
1 parent 84176bc commit 8c6c581Copy full SHA for 8c6c581
cpp/common/test/includes/standard-library/tuple.h
@@ -1,12 +1,11 @@
1
namespace std {
2
template <class... Types> class tuple {};
3
template <class... Types> std::tuple<Types...> make_tuple(Types &&...args);
4
-// TODO change this to example from cpp standard
5
struct ignore_t {
6
template <typename T>
7
constexpr // required since C++14
8
void
9
operator=(T &&) const noexcept {}
10
};
11
-inline constexpr std::ignore_t ignore; // 'const' only until C++17
+inline const std::ignore_t ignore; // 'const' only until C++17
12
} // namespace std
0 commit comments