Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove --rpm signature in comment #4366

Merged
merged 1 commit into from
Apr 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/H5Tconv.c
Original file line number Diff line number Diff line change
Expand Up @@ -1869,7 +1869,7 @@ H5T__conv_b_b(const H5T_t *src, const H5T_t *dst, H5T_cdata_t *cdata, const H5T_
d = (elmtno + olap) >= nelmts ? dbuf : dp;
} /* end else */
#ifndef NDEBUG
/* I don't quite trust the overlap calculations yet --rpm */
/* I don't quite trust the overlap calculations yet */
if (d == dbuf)
assert((dp >= sp && dp < sp + src->shared->size) ||
(sp >= dp && sp < dp + dst->shared->size));
Expand Down Expand Up @@ -4491,7 +4491,7 @@ H5T__conv_i_i(const H5T_t *src, const H5T_t *dst, H5T_cdata_t *cdata, const H5T_
d = elmtno + olap >= nelmts ? dbuf : dp;
}
#ifndef NDEBUG
/* I don't quite trust the overlap calculations yet --rpm */
/* I don't quite trust the overlap calculations yet */
if (d == dbuf) {
assert((dp >= sp && dp < sp + src->shared->size) ||
(sp >= dp && sp < dp + dst->shared->size));
Expand Down Expand Up @@ -4964,7 +4964,7 @@ H5T__conv_f_f(const H5T_t *src_p, const H5T_t *dst_p, H5T_cdata_t *cdata, const
d = elmtno + olap >= nelmts ? dbuf : dp;
}
#ifndef NDEBUG
/* I don't quite trust the overlap calculations yet --rpm */
/* I don't quite trust the overlap calculations yet */
if (d == dbuf) {
assert((dp >= sp && dp < sp + src_p->shared->size) ||
(sp >= dp && sp < dp + dst_p->shared->size));
Expand Down Expand Up @@ -5542,7 +5542,7 @@ H5T__conv_s_s(const H5T_t *src, const H5T_t *dst, H5T_cdata_t *cdata,
d = elmtno + olap >= nelmts ? dbuf : dp;
}
#ifndef NDEBUG
/* I don't quite trust the overlap calculations yet --rpm */
/* I don't quite trust the overlap calculations yet */
if (src->shared->size == dst->shared->size || buf_stride) {
assert(s == d);
}
Expand Down Expand Up @@ -9007,7 +9007,7 @@ H5T__conv_f_i(const H5T_t *src_p, const H5T_t *dst_p, H5T_cdata_t *cdata, const
d = elmtno + olap >= nelmts ? dbuf : dp;
}
#ifndef NDEBUG
/* I don't quite trust the overlap calculations yet --rpm */
/* I don't quite trust the overlap calculations yet */
if (d == dbuf) {
assert((dp >= sp && dp < sp + src_p->shared->size) ||
(sp >= dp && sp < dp + dst_p->shared->size));
Expand Down Expand Up @@ -9676,7 +9676,7 @@ H5T__conv_i_f(const H5T_t *src_p, const H5T_t *dst_p, H5T_cdata_t *cdata, const
d = elmtno + olap >= nelmts ? dbuf : dp;
}
#ifndef NDEBUG
/* I don't quite trust the overlap calculations yet --rpm */
/* I don't quite trust the overlap calculations yet */
if (d == dbuf) {
assert((dp >= sp && dp < sp + src_p->shared->size) ||
(sp >= dp && sp < dp + dst_p->shared->size));
Expand Down
Loading