Skip to content

Commit

Permalink
Fix build errors due to new compiler on Arch Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
dbahrdt committed Jun 21, 2023
1 parent 4088a77 commit 29625bb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/app/tests/suites/pics/PICSBooleanExpressionParser.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include <map>
#include <string>
#include <vector>
#include <cstdint>

class PICSBooleanExpressionParser
{
Expand Down
2 changes: 1 addition & 1 deletion src/controller/SetUpCodePairer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ void SetUpCodePairer::OnPairingComplete(CHIP_ERROR error)
if (CHIP_ERROR_TIMEOUT == error && mCurrentPASEParameters.HasValue())
{
const auto & params = mCurrentPASEParameters.Value();
auto & ip = params.GetPeerAddress().GetIPAddress();
auto ip = params.GetPeerAddress().GetIPAddress();
auto err = Dnssd::Resolver::Instance().ReconfirmRecord(params.mHostName, ip, params.mInterfaceId);
if (CHIP_NO_ERROR != err && CHIP_ERROR_NOT_IMPLEMENTED != err)
{
Expand Down
1 change: 1 addition & 0 deletions src/setup_payload/AdditionalDataPayload.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
#pragma once

#include <string>
#include <cstdint>

namespace chip {
namespace SetupPayloadData {
Expand Down

0 comments on commit 29625bb

Please sign in to comment.