Skip to content

Commit e490944

Browse files
[chip-tool] include crypto/CryptoBuildConfig.h must be guarded by CHIP_HAVE_CONFIG_H (project-chip#37366)
* [chip-tool] include crypto/CryptoBuildConfig.h must be guarded by CHIP_HAVE_CONFIG_H Minor fix to unguarded include. * Restyled by clang-format --------- Co-authored-by: Restyled.io <commits@restyled.io>
1 parent f957643 commit e490944

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

examples/chip-tool/commands/dcl/HTTPSRequest.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@
1818

1919
#include "HTTPSRequest.h"
2020

21+
#if CHIP_HAVE_CONFIG_H
2122
#include <crypto/CryptoBuildConfig.h>
23+
#endif // CHIP_HAVE_CONFIG_H
24+
2225
#include <lib/support/Base64.h>
2326
#include <lib/support/SafeInt.h>
2427
#include <lib/support/ScopedBuffer.h>

0 commit comments

Comments
 (0)