* include/std/optional: Use the feature macro.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@256185
138bc75d-0d04-0410-961f-
82ee72b054a4
+2018-01-03 Ville Voutilainen <ville.voutilainen@gmail.com>
+
+ Protect optional's deduction guide with the feature macro
+ * include/std/optional: Use the feature macro.
+
2018-01-03 Jakub Jelinek <jakub@redhat.com>
Update copyright years.
/// @}
+#if __cpp_deduction_guides >= 201606
template <typename _Tp> optional(_Tp) -> optional<_Tp>;
+#endif
_GLIBCXX_END_NAMESPACE_VERSION
} // namespace std