mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-02 21:11:25 +12:00
Remove redundant semicolons
Fix "-Wextra-semi" warnings
This commit is contained in:
parent
1f82a26a9c
commit
6c5ea068c9
25 changed files with 62 additions and 62 deletions
|
@ -58,12 +58,12 @@ namespace utils
|
|||
return (start1 >= start2 && end1 <= end2);
|
||||
}
|
||||
|
||||
address_range(u32 _start, u32 _end) : start(_start), end(_end) {};
|
||||
address_range(u32 _start, u32 _end) : start(_start), end(_end) {}
|
||||
|
||||
public:
|
||||
// Constructors
|
||||
address_range() = default;
|
||||
address_range(const address_range &other) : start(other.start), end(other.end) {};
|
||||
address_range(const address_range &other) : start(other.start), end(other.end) {}
|
||||
|
||||
static inline address_range start_length(u32 _start, u32 _length)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue