[pretty] apply clang-format-9 (#5761)

This commit is contained in:
Jonathan Hui
2020-11-03 07:17:05 -08:00
parent 0eecd1c481
commit 85477edf7b
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -264,7 +264,7 @@ private:
void Advance(void);
void operator++(void) { Advance(); }
void operator++(int) { Advance(); }
const NdProxy &operator*(void) const { return *mCurrent; }
const NdProxy &operator*(void)const { return *mCurrent; }
bool operator==(const Iterator &aOther) const { return mCurrent == aOther.mCurrent; }
bool operator!=(const Iterator &aOther) const { return !(*this == aOther); }
NdProxy * operator->(void) { return mCurrent; }
+1 -1
View File
@@ -916,7 +916,7 @@ public:
* @returns A reference to the `ChildInfo` entry currently pointed by the iterator.
*
*/
const ChildInfo &operator*(void) const { return mChildInfo; }
const ChildInfo &operator*(void)const { return mChildInfo; }
/**
* This method overloads operator `==` to evaluate whether or not two iterator instances are equal.
+1 -1
View File
@@ -831,7 +831,7 @@ public:
* @returns A reference to the `Ip6::Address` entry currently pointed by the iterator.
*
*/
const Ip6::Address &operator*(void) const { return *GetAddress(); }
const Ip6::Address &operator*(void)const { return *GetAddress(); }
/**
* This method overloads operator `==` to evaluate whether or not two `Iterator` instances are equal.