@@ -11,22 +11,22 @@ to python 3 (keeping it compatible with python 2).
11
11
In Mai 2014, Michka Popoff and the Insight Software Consortium revived pygccxml
12
12
by setting up a git repositery on github, hosted along with gccxml.
13
13
14
- Version 1.7.3 (not yet released)
15
- --------------------------------
14
+ Version 1.7.3
15
+ -------------
16
16
17
- 1. C++xx flags are now correctly passed to CastXML. Allowed flags are:
18
- "-std=c++98", "-std=c++03", "-std=c++11", "-std=c++14", "-std=c++1z"
19
- Thanks to Mark Moll for the fix.
17
+ 1. Addition of an is_union() method in the type_traits module.
20
18
21
- 2. Addition of a is_union() method in the type_traits module.
19
+ 2. type_traits.smart_pointer_traits will now classify std::shared_ptr as a
20
+ smart pointer (only boost::shared_ptr was recognized before)
22
21
23
- 3. type_traits.smart_pointer_traits will now classify std::shared_ptr as a
24
- smart pointer (only boost::shared_ptr was recognised before)
22
+ 3. Fix a regression in undname_creator_t.format_argtypes
25
23
26
- 4. Fix a regression in undname_creator_t.format_argtypes
24
+ 4. C++xx flags are now correctly passed to CastXML. Allowed flags are:
25
+ "-std=c++98", "-std=c++03", "-std=c++11", "-std=c++14", "-std=c++1z"
26
+ Thanks to Mark Moll for the fix.
27
27
28
28
5. Add better support for "typedef (class|struct) {} foo;" syntax when using
29
- CastXML. GCCXML did not recognize the typedef here . Fetching these
29
+ CastXML. GCCXML did not recognize the typedef. Fetching these
30
30
declarations can now be done with: .typedef("foo") or .class_("foo").
31
31
32
32
6. Add support for the future llvm 3.9. As in release v1.7.1, new structs and
@@ -39,9 +39,9 @@ Version 1.7.3 (not yet released)
39
39
latest version of CastXML is recommended. This makes sure default arguments
40
40
for function parameters are correctly defined, so that py++ can process them.
41
41
42
- 8. Fixes for exeption when using castxml + gcc5 + std=c++11 + maps.
42
+ 8. Fix for exception when using castxml + gcc5 + std=c++11 and maps.
43
43
44
- 9. Remove unittest2 dependency for testing with python 2.6
44
+ 9. Removed unittest2 dependency for testing with python 2.6
45
45
46
46
10. Testing: test with std::tr1 unordered containers for gcc >= 4.4.7 and castxml
47
47
0 commit comments