File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1
- 1.648 - 2025-03-11 , H.Merijn Brand
1
+ 1.648 - 2025-03-14 , H.Merijn Brand
2
2
* Correct sprintf usage for trace_msg (issue#132)
3
3
* Add DBIXS_VERSION & DBIXS_RELEASE to dbixs_rev.h
4
+ * Remove -Wbad-function-cast
4
5
5
6
1.647 - 2025-01-20, H.Merijn Brand
6
7
* Spellcheck
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ if (my $gccversion = $Config{gccversion}) { # ask gcc to be more pedantic
106
106
if ($gccversion =~ m / clang ([0-9][-0-9.]*)/ i ) {
107
107
print " Your perl was compiled with Clang (version $1 ). As this is not GCC, version checking is skipped.\n " ;
108
108
# https://clang.llvm.org/docs/DiagnosticsReference.html
109
- $opts {DEFINE } .= " -W -Wall -Wpointer-arith -Wbad-function-cast " ;
109
+ $opts {DEFINE } .= " -W -Wall -Wpointer-arith" ;
110
110
$opts {DEFINE } .= " -Wno-comment -Wno-sign-compare -Wno-cast-qual" ;
111
111
$opts {DEFINE } .= " -Wmissing-noreturn -Wno-unused-parameter" ;
112
112
$opts {DEFINE } .= " -Wno-compound-token-split-by-macro -Wno-constant-conversion" ;
@@ -120,7 +120,7 @@ if (my $gccversion = $Config{gccversion}) { # ask gcc to be more pedantic
120
120
if $gccversion =~ m / ^\D *(1|2\. [1-8])\b / ;
121
121
print " Your perl was compiled with gcc (version $Config {gccversion}), okay.\n " ;
122
122
$gccversion =~ s / [^\d\. ]// g ; # just a number please
123
- $opts {DEFINE } .= " -W -Wall -Wpointer-arith -Wbad-function-cast " ;
123
+ $opts {DEFINE } .= " -W -Wall -Wpointer-arith" ;
124
124
$opts {DEFINE } .= " -Wno-comment -Wno-sign-compare -Wno-cast-qual" ;
125
125
$opts {DEFINE } .= " -Wmissing-noreturn -Wno-unused-parameter" if $gccversion ge " 3.0" ;
126
126
if ($is_developer && $: :opt_g) {
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ DBI::Changes - List of significant changes to the DBI
12
12
13
13
=encoding UTF-8
14
14
15
- =head2 Changes in DBI 1.648 - 11 Mar 2025
15
+ =head2 Changes in DBI 1.648 - 14 Mar 2025
16
16
17
17
=over 2
18
18
@@ -24,6 +24,10 @@ Correct sprintf usage for trace_msg (issue#132)
24
24
25
25
Add DBIXS_VERSION & DBIXS_RELEASE to dbixs_rev.h
26
26
27
+ =item *
28
+
29
+ Remove -Wbad-function-cast
30
+
27
31
=back
28
32
29
33
=head2 Changes in DBI 1.647 - 20 Jan 2025
You can’t perform that action at this time.
0 commit comments