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 May 12, 2023
1 parent 4088a77 commit 61ac62f
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 7 deletions.
5 changes: 0 additions & 5 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,6 @@
path = third_party/nanopb/repo
url = https://github.com/nanopb/nanopb.git
branch = master
[submodule "qpg_sdk"]
path = third_party/qpg_sdk/repo
url = https://github.com/Qorvo/QMatter
branch = vlatest-libs
platforms = qpg
[submodule "freertos"]
path = third_party/freertos/repo
url = https://github.com/FreeRTOS/FreeRTOS-Kernel.git
Expand Down
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
1 change: 0 additions & 1 deletion third_party/qpg_sdk/repo
Submodule repo deleted from eb1984

0 comments on commit 61ac62f

Please sign in to comment.