Skip to content

Commit 211b1e4

Browse files
committed
Fix compile error.
1 parent c3954d5 commit 211b1e4

File tree

1 file changed

+1
-1
lines changed
  • packages/logging/include/logging

1 file changed

+1
-1
lines changed

packages/logging/include/logging/String.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ namespace string {
3232
stackstring() {
3333
mSize = size - 1;
3434
mBufPtr = mBuf[0];
35-
std::memset(mBufPtr, 0, size);
35+
memset(mBufPtr, 0, size);
3636
}
3737
~stackstring() = default;
3838

0 commit comments

Comments
 (0)