We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fde5bf commit bf79f77Copy full SHA for bf79f77
1 file changed
section1/test03.cpp
@@ -38,6 +38,13 @@ void case1()
38
cout << "running on others" << endl;
39
#endif //__linux__
40
41
+
42
+#if defined(__cpp_decltype_auto)
43
+ cout << "decltype(auto) enable" << endl;
44
+#else
45
+ cout << "decltype(auto) disable" << endl;
46
+#endif //__cpp_decltype_auto
47
48
#ifndef NDEBUG
49
cout << "debug mode" << endl;
50
#endif // NDEBUG
0 commit comments