Skip to content

Commit

Permalink
Restyled by clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-commits committed Nov 2, 2021
1 parent c501836 commit b9a2a5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/zap-templates/common/attributes/Accessors.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const StructHelper = require('../../common/StructHelper.js');
// The specification allow non-standard signed and unsigned integer with a width of 24, 40, 48 or 56, but those types does not have
// proper support yet into the codebase and the resulting generated code can not be built with them.
// Once they are supported, the following method could be removed.
const unsupportedTypes = ['INT40S', 'INT48S', 'INT56S', 'INT40U', 'INT48U', 'INT56U', 'EUI64'];
const unsupportedTypes = [ 'INT40S', 'INT48S', 'INT56S', 'INT40U', 'INT48U', 'INT56U', 'EUI64' ];
function isUnsupportedType(type)
{
return unsupportedTypes.includes(type.toUpperCase());
Expand Down

0 comments on commit b9a2a5f

Please sign in to comment.