Skip to content

Commit c574482

Browse files
author
gavinhgchen
committed
continue...
1 parent b4d2922 commit c574482

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/cos_config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#ifndef COS_CPP_SDK_V5_INCLUDE_COS_CONFIG_H_
1+
#ifndef COS_CPP_SDK_V5_INCLUDE_COS_CONFIG_H_
22
#define COS_CPP_SDK_V5_INCLUDE_COS_CONFIG_H_
33

44
#include <stdint.h>

src/util/file_util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ uint64_t FileUtil::GetFileCrc64(const std::string& file) {
9494
uint64_t FileUtil::GetFileCrc64(const std::wstring& file) {
9595
std::fstream f(file, std::ios::in | std::ios::binary);
9696
// NOCA:VariableLengthArrays(设计如此)
97-
const static int buffer_size = 2048;
97+
const static int buffer_size = 2048; // NOCA:runtime/arrays(ignore)
9898
char buffer[buffer_size]; // NOCA:runtime/arrays(ignore)
9999
uint64_t crc64 = 0;
100100
while (f.good()) {

0 commit comments

Comments
 (0)