mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-06-13 06:13:00 -06:00
Ide: About box now detects latest version of c++ and show only one version.
git-svn-id: svn://ultimatepp.org/upp/trunk@15230 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
154ff652aa
commit
e57d2dc3e4
1 changed files with 7 additions and 4 deletions
|
|
@ -31,11 +31,14 @@ String SplashCtrl::GenerateVersionInfo(char separator)
|
|||
h << " (GCC)";
|
||||
#endif
|
||||
#endif
|
||||
#if __cplusplus >= 201100
|
||||
h << " (C++11)";
|
||||
#endif
|
||||
#if __cplusplus >= 201400
|
||||
#if __cplusplus >= 202000
|
||||
h << " (C++20)";
|
||||
#elif __cplusplus >= 201700
|
||||
h << " (C++17)";
|
||||
#elif __cplusplus >= 201400
|
||||
h << " (C++14)";
|
||||
#elif __cplusplus >= 201100
|
||||
h << " (C++11)";
|
||||
#endif
|
||||
#ifdef GUI_GTK
|
||||
h << " (Gtk)";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue