Skip to content

Commit 2c53567

Browse files
Fix namespace handling for bitmap types in zapTypeToClusterObjectType. (#10620)
1 parent 44304c5 commit 2c53567

File tree

2 files changed

+51
-51
lines changed

2 files changed

+51
-51
lines changed

src/app/zap-templates/templates/app/helper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ async function zapTypeToClusterObjectType(type, isDecodable, options)
396396
}
397397

398398
if (await typeChecker('isBitmap')) {
399-
return ns + 'BitFlags<' + type + '>';
399+
return 'chip::BitFlags<' + ns + type + '>';
400400
}
401401

402402
if (await typeChecker('isStruct')) {

zzz_generated/app-common/app-common/zap-generated/cluster-objects.h

+50-50
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)