fix ci error, remove unwanted param comment
This commit is contained in:
parent
45a7c365ee
commit
be6cdaa4b9
@ -2111,7 +2111,7 @@ class binary_reader
|
|||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
result = ( (dim.size() > 0) ? 1 : 0 );
|
result = ( (!dim.empty()) ? 1 : 0 );
|
||||||
for (auto i : dim)
|
for (auto i : dim)
|
||||||
{
|
{
|
||||||
result *= i;
|
result *= i;
|
||||||
|
|||||||
@ -37,7 +37,6 @@ class binary_writer
|
|||||||
@brief create a binary writer
|
@brief create a binary writer
|
||||||
|
|
||||||
@param[in] adapter output adapter to write to
|
@param[in] adapter output adapter to write to
|
||||||
@param[in] is_bjdata_ a boolean, if true, output is BJData format, default is false
|
|
||||||
*/
|
*/
|
||||||
explicit binary_writer(output_adapter_t<CharType> adapter) : oa(std::move(adapter))
|
explicit binary_writer(output_adapter_t<CharType> adapter) : oa(std::move(adapter))
|
||||||
{
|
{
|
||||||
|
|||||||
@ -10487,7 +10487,7 @@ class binary_reader
|
|||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
result = ( (dim.size() > 0) ? 1 : 0 );
|
result = ( (!dim.empty()) ? 1 : 0 );
|
||||||
for (auto i : dim)
|
for (auto i : dim)
|
||||||
{
|
{
|
||||||
result *= i;
|
result *= i;
|
||||||
@ -13870,7 +13870,6 @@ class binary_writer
|
|||||||
@brief create a binary writer
|
@brief create a binary writer
|
||||||
|
|
||||||
@param[in] adapter output adapter to write to
|
@param[in] adapter output adapter to write to
|
||||||
@param[in] is_bjdata_ a boolean, if true, output is BJData format, default is false
|
|
||||||
*/
|
*/
|
||||||
explicit binary_writer(output_adapter_t<CharType> adapter) : oa(std::move(adapter))
|
explicit binary_writer(output_adapter_t<CharType> adapter) : oa(std::move(adapter))
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user