Skip to content

Commit

Permalink
Formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
kring committed Jan 14, 2025
1 parent 49bf416 commit 05b5fbd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Cesium3DTilesContent/src/BatchTableToGltfStructuralMetadata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ struct MaskedType {
bool isFloat64;
bool isBool;

MaskedType() : MaskedType(true) {};
MaskedType() : MaskedType(true){};

MaskedType(bool defaultValue)
: isInt8(defaultValue),
Expand Down Expand Up @@ -130,12 +130,12 @@ struct MaskedArrayType {
uint32_t minArrayCount;
uint32_t maxArrayCount;

MaskedArrayType() : MaskedArrayType(true) {};
MaskedArrayType() : MaskedArrayType(true){};

MaskedArrayType(bool defaultValue)
: elementType(defaultValue),
minArrayCount(std::numeric_limits<uint32_t>::max()),
maxArrayCount(std::numeric_limits<uint32_t>::min()) {};
maxArrayCount(std::numeric_limits<uint32_t>::min()){};

MaskedArrayType(
MaskedType inElementType,
Expand Down Expand Up @@ -204,10 +204,10 @@ struct CompatibleTypes {
bool _canUseNullStringSentinel = true;

public:
CompatibleTypes() : _type() {};
CompatibleTypes(const MaskedType& maskedType) : _type(maskedType) {};
CompatibleTypes() : _type(){};
CompatibleTypes(const MaskedType& maskedType) : _type(maskedType){};
CompatibleTypes(const MaskedArrayType& maskedArrayType)
: _type(maskedArrayType) {};
: _type(maskedArrayType){};

/**
* Whether this is exclusively compatible with array types. This indicates an
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

0 comments on commit 05b5fbd

Please sign in to comment.