Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
yunhanw-google committed Nov 1, 2021
1 parent be80d63 commit c3de94e
Show file tree
Hide file tree
Showing 18 changed files with 7,945 additions and 8,777 deletions.
4 changes: 2 additions & 2 deletions src/app/MessageDef/ArrayBuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ CHIP_ERROR ArrayBuilder::Init(TLV::TLVWriter * const apWriter)

return mError;
}
}; // namespace app
}; // namespace chip
} // namespace app
} // namespace chip
4 changes: 2 additions & 2 deletions src/app/MessageDef/ArrayBuilder.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@ class ArrayBuilder : public Builder
CHIP_ERROR Init(TLV::TLVWriter * const apWriter);
};

}; // namespace app
}; // namespace chip
} // namespace app
} // namespace chip
4 changes: 2 additions & 2 deletions src/app/MessageDef/ArrayParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ CHIP_ERROR ArrayParser::Init(const TLV::TLVReader & aReader)
ReturnLogErrorOnFailure(mReader.EnterContainer(mOuterContainerType));
return CHIP_NO_ERROR;
}
}; // namespace app
}; // namespace chip
} // namespace app
} // namespace chip
4 changes: 2 additions & 2 deletions src/app/MessageDef/ArrayParser.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ class ArrayParser : public Parser
*/
CHIP_ERROR Init(const TLV::TLVReader & aReader);
};
}; // namespace app
}; // namespace chip
} // namespace app
} // namespace chip
4 changes: 2 additions & 2 deletions src/app/MessageDef/Builder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,5 @@ CHIP_ERROR Builder::InitAnonymousStructure(chip::TLV::TLVWriter * const apWriter

return mError;
}
}; // namespace app
}; // namespace chip
} // namespace app
} // namespace chip
4 changes: 2 additions & 2 deletions src/app/MessageDef/Builder.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,5 +95,5 @@ class Builder
Builder();
CHIP_ERROR InitAnonymousStructure(chip::TLV::TLVWriter * const apWriter);
};
}; // namespace app
}; // namespace chip
} // namespace app
} // namespace chip
4 changes: 2 additions & 2 deletions src/app/MessageDef/ListBuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ CHIP_ERROR ListBuilder::Init(TLV::TLVWriter * const apWriter)

return mError;
}
}; // namespace app
}; // namespace chip
} // namespace app
} // namespace chip
6 changes: 3 additions & 3 deletions src/app/MessageDef/ListBuilder.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class ListBuilder : public Builder
* @return CHIP_ERROR codes returned by chip::TLV objects.
*/
CHIP_ERROR Init(TLV::TLVWriter * const apWriter);
};
}

}; // namespace app
}; // namespace chip
} // namespace app
} // namespace chip
4 changes: 2 additions & 2 deletions src/app/MessageDef/ListParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ CHIP_ERROR ListParser::Init(const TLV::TLVReader & aReader)
ReturnLogErrorOnFailure(mReader.EnterContainer(mOuterContainerType));
return CHIP_NO_ERROR;
}
}; // namespace app
}; // namespace chip
} // namespace app
} // namespace chip
4 changes: 2 additions & 2 deletions src/app/MessageDef/ListParser.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ class ListParser : public Parser
*/
CHIP_ERROR Init(const TLV::TLVReader & aReader);
};
}; // namespace app
}; // namespace chip
} // namespace app
} // namespace chip
4 changes: 2 additions & 2 deletions src/app/MessageDef/Parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ CHIP_ERROR Parser::Next()
ChipLogIfFalse((CHIP_NO_ERROR == err) || (CHIP_END_OF_TLV == err));
return err;
}
}; // namespace app
}; // namespace chip
} // namespace app
} // namespace chip
4 changes: 2 additions & 2 deletions src/app/MessageDef/Parser.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,5 +102,5 @@ class Parser
return err;
};
};
}; // namespace app
}; // namespace chip
} // namespace app
} // namespace chip
4 changes: 2 additions & 2 deletions src/app/MessageDef/StructBuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ CHIP_ERROR StructBuilder::Init(TLV::TLVWriter * const apWriter)
mError = mpWriter->StartContainer(TLV::AnonymousTag, TLV::kTLVType_Structure, mOuterContainerType);
return mError;
}
}; // namespace app
}; // namespace chip
} // namespace app
} // namespace chip
6 changes: 3 additions & 3 deletions src/app/MessageDef/StructBuilder.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class StructBuilder : public Builder
* @return CHIP_ERROR codes returned by chip::TLV objects.
*/
CHIP_ERROR Init(TLV::TLVWriter * const apWriter);
};
}

}; // namespace app
}; // namespace chip
} // namespace app
} // namespace chip
4 changes: 2 additions & 2 deletions src/app/MessageDef/StructParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ CHIP_ERROR StructParser::Init(const TLV::TLVReader & aReader)
ReturnLogErrorOnFailure(mReader.EnterContainer(mOuterContainerType));
return CHIP_NO_ERROR;
}
}; // namespace app
}; // namespace chip
} // namespace app
} // namespace chip
4 changes: 2 additions & 2 deletions src/app/MessageDef/StructParser.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ class StructParser : public Parser
*/
CHIP_ERROR Init(const TLV::TLVReader & aReader);
};
}; // namespace app
}; // namespace chip
} // namespace app
} // namespace chip
Loading

0 comments on commit c3de94e

Please sign in to comment.