Skip to content

Commit

Permalink
Add missing include <string.h> to CustomStringPrefix.h (#25419)
Browse files Browse the repository at this point in the history
  • Loading branch information
mspang authored and pull[bot] committed Jun 22, 2023
1 parent ff44970 commit 4015c4f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions examples/chip-tool/commands/common/CustomStringPrefix.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@

#pragma once

#include <string.h>

#include <lib/support/CodeUtils.h>

static constexpr char kJsonStringPrefix[] = "json:";
constexpr size_t kJsonStringPrefixLen = ArraySize(kJsonStringPrefix) - 1; // Don't count the null

Expand Down

0 comments on commit 4015c4f

Please sign in to comment.