Skip to content

Commit

Permalink
Fix namespace handling for bitmap types in zapTypeToClusterObjectType. (
Browse files Browse the repository at this point in the history
  • Loading branch information
bzbarsky-apple authored and pull[bot] committed Oct 19, 2021
1 parent eb084ed commit 1102656
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 51 deletions.
2 changes: 1 addition & 1 deletion src/app/zap-templates/templates/app/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ async function zapTypeToClusterObjectType(type, isDecodable, options)
}

if (await typeChecker('isBitmap')) {
return ns + 'BitFlags<' + type + '>';
return 'chip::BitFlags<' + ns + type + '>';
}

if (await typeChecker('isStruct')) {
Expand Down
100 changes: 50 additions & 50 deletions zzz_generated/app-common/app-common/zap-generated/cluster-objects.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1102656

Please sign in to comment.