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 10dadd8 + b971292 commit 3a656b8Copy full SHA for 3a656b8
CHANGELOG.md
@@ -1,6 +1,12 @@
1
Changes
2
=======
3
4
+Version 2.5.0
5
+-------------
6
+
7
+1. Add support for new cxx versions in cxx_standard class
8
9
10
Version 2.4.0
11
-------------
12
src/pygccxml/utils/utils.py
@@ -277,8 +277,12 @@ class cxx_standard(object):
277
'-std=c++17': 201703,
278
'-std=gnu++1z': 201703,
279
'-std=gnu++17': 201703,
280
- '-std=c++2a': float('inf'),
281
- '-std=gnu++2a': float('inf'),
+ '-std=c++2a': 202002,
+ '-std=gnu++2a': 202002,
282
+ '-std=c++20': 202002,
283
+ '-std=gnu++20': 202002,
284
+ '-std=c++23': float('inf'),
285
+ '-std=gnu++23': float('inf'),
286
}
287
288
def __init__(self, cflags):
0 commit comments