Skip to content

Commit 1445212

Browse files
author
Tor Didriksen
committed
Bug#31037561 enable doc-comment warnings for storage/innobase/
Post push fix for broken build on MacOS ARM storage/innobase/ut/crc32.cc:491:59: error: HTML start tag prematurely ended, expected attribute name or '>' [-Werror,-Wdocumentation] @return the polynomial w(x) = sum_{i=0}^{63} { (w&(1ULL<<i)) * x^{i} } ^ Change-Id: I74c9f92e42e0f4c1d9bd058e0bd0e4c7c42c6b8c
1 parent 65e8f9f commit 1445212

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

storage/innobase/ut/crc32.cc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ uint64_t use_pclmul::polynomial_mul_rev(uint32_t rev_u) {
488488
#ifdef CRC32_ARM64
489489
/** This function performs just a "type casts" from uint64_t to poly64_t.
490490
@param[in] w The 64 coefficients of the polynomial
491-
@return the polynomial w(x) = sum_{i=0}^{63} { (w&(1ULL<<i)) * x^{i} }
491+
@return the polynomial w(x) = sum_{i=0}^{63} { (w&(1ULL << i)) * x^{i} }
492492
*/
493493
static inline poly64_t uint64_t_to_poly_64_t(uint64_t w) {
494494
/* This should compile down to nothing */
@@ -497,7 +497,8 @@ static inline poly64_t uint64_t_to_poly_64_t(uint64_t w) {
497497
/** This function takes a polynomial and extracts the 64 least significant
498498
coefficients.
499499
@param[in] w The polynomial w(x) = sum_{i=0}^{127} { a_i * x^{i} }
500-
@return The lowest 64 coefficients, i.e. (result & (1ULL<<i)) == a_i for 0<=i<64
500+
@return
501+
The lowest 64 coefficients, i.e. (result & (1ULL << i)) == a_i for 0<=i<64
501502
*/
502503
static inline uint64_t less_significant_half_of_poly128_t_to_uint64_t(
503504
poly128_t w) {

0 commit comments

Comments
 (0)