Skip to content

Commit

Permalink
Remove unnecessary semicolons.
Browse files Browse the repository at this point in the history
Bug: N/A
Test: build w/o -Wno-c++98-compat-extra-semi
Change-Id: Id6d7df00a22873917b7e480b71050d662fabb243
  • Loading branch information
smore-lore committed Sep 26, 2019
1 parent 0338952 commit 7173a4c
Show file tree
Hide file tree
Showing 19 changed files with 38 additions and 38 deletions.
4 changes: 2 additions & 2 deletions Binder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -252,5 +252,5 @@ bool BpHwRefBase::onIncStrongAttempted(uint32_t /*flags*/, const void* /*id*/)

// ---------------------------------------------------------------------------

}; // namespace hardware
}; // namespace android
} // namespace hardware
} // namespace android
4 changes: 2 additions & 2 deletions BpHwBinder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -324,5 +324,5 @@ bool BpHwBinder::onIncStrongAttempted(uint32_t /*flags*/, const void* /*id*/)

// ---------------------------------------------------------------------------

}; // namespace hardware
}; // namespace android
} // namespace hardware
} // namespace android
4 changes: 2 additions & 2 deletions BufferedTextOutput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -279,5 +279,5 @@ BufferedTextOutput::BufferState* BufferedTextOutput::getBuffer() const
return mGlobalState;
}

}; // namespace hardware
}; // namespace android
} // namespace hardware
} // namespace android
4 changes: 2 additions & 2 deletions Debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,6 @@ ssize_t getHWBinderKernelReferences(size_t count, uintptr_t* buf) {
return proc->getKernelReferences(count, buf);
}

}; // namespace hardware
}; // namespace android
} // namespace hardware
} // namespace android

4 changes: 2 additions & 2 deletions IInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ sp<IBinder> IInterface::asBinder(const sp<IInterface>& iface)

// ---------------------------------------------------------------------------

}; // namespace hardware
}; // namespace android
} // namespace hardware
} // namespace android
4 changes: 2 additions & 2 deletions IPCThreadState.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1321,5 +1321,5 @@ void IPCThreadState::freeBuffer(Parcel* parcel, const uint8_t* data,
state->mOut.writePointer((uintptr_t)data);
}

}; // namespace hardware
}; // namespace android
} // namespace hardware
} // namespace android
4 changes: 2 additions & 2 deletions Parcel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1983,5 +1983,5 @@ void Parcel::scanForFds() const
mFdsKnown = true;
}

}; // namespace hardware
}; // namespace android
} // namespace hardware
} // namespace android
4 changes: 2 additions & 2 deletions ProcessState.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -470,5 +470,5 @@ ProcessState::~ProcessState()
mDriverFD = -1;
}

}; // namespace hardware
}; // namespace android
} // namespace hardware
} // namespace android
4 changes: 2 additions & 2 deletions TextOutput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,5 @@ TextOutput& operator<<(TextOutput& to, const HexDump& val)
return to;
}

}; // namespace hardware
}; // namespace android
} // namespace hardware
} // namespace android
4 changes: 2 additions & 2 deletions include/hwbinder/Binder.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ class BpHwRefBase : public virtual RefBase
std::atomic<int32_t> mState;
};

}; // namespace hardware
}; // namespace android
} // namespace hardware
} // namespace android

// ---------------------------------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions include/hwbinder/BpHwBinder.h
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ class BpHwBinder : public IBinder
mutable String16 mDescriptorCache;
};

}; // namespace hardware
}; // namespace android
} // namespace hardware
} // namespace android

// ---------------------------------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions include/hwbinder/BufferedTextOutput.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class BufferedTextOutput : public TextOutput
};

// ---------------------------------------------------------------------------
}; // namespace hardware
}; // namespace android
} // namespace hardware
} // namespace android

#endif // ANDROID_HARDWARE_BUFFEREDTEXTOUTPUT_H
4 changes: 2 additions & 2 deletions include/hwbinder/Debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ ssize_t getHWBinderKernelReferences(size_t count, uintptr_t* buf);
__END_DECLS

// ---------------------------------------------------------------------------
}; // namespace hardware
}; // namespace android
} // namespace hardware
} // namespace android

#endif // ANDROID_HARDWARE_BINDER_DEBUG_H
4 changes: 2 additions & 2 deletions include/hwbinder/IBinder.h
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ class IBinder : public virtual RefBase
private:
};

}; // namespace hardware
}; // namespace android
} // namespace hardware
} // namespace android

// ---------------------------------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions include/hwbinder/IInterface.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ inline IBinder* BpInterface<INTERFACE>::onAsBinder()

// ----------------------------------------------------------------------

}; // namespace hardware
}; // namespace android
} // namespace hardware
} // namespace android

#endif // ANDROID_HARDWARE_IINTERFACE_H
4 changes: 2 additions & 2 deletions include/hwbinder/IPCThreadState.h
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ class IPCThreadState
ProcessState::CallRestriction mCallRestriction;
};

}; // namespace hardware
}; // namespace android
} // namespace hardware
} // namespace android

// ---------------------------------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions include/hwbinder/Parcel.h
Original file line number Diff line number Diff line change
Expand Up @@ -322,8 +322,8 @@ status_t unflatten_binder(const sp<ProcessState>& proc,
status_t unflatten_binder(const sp<ProcessState>& proc,
const flat_binder_object& flat, wp<IBinder>* out);

}; // namespace hardware
}; // namespace android
} // namespace hardware
} // namespace android

// ---------------------------------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions include/hwbinder/ProcessState.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ class ProcessState : public virtual RefBase
CallRestriction mCallRestriction;
};

}; // namespace hardware
}; // namespace android
} // namespace hardware
} // namespace android

// ---------------------------------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions include/hwbinder/TextOutput.h
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ inline size_t HexDump::alignment() const { return mAlignment; }
inline bool HexDump::carrayStyle() const { return mCArrayStyle; }

// ---------------------------------------------------------------------------
}; // namespace hardware
}; // namespace android
} // namespace hardware
} // namespace android

#endif // ANDROID_HARDWARE_TEXTOUTPUT_H

0 comments on commit 7173a4c

Please sign in to comment.