mirror of
https://github.com/chromium/crashpad.git
synced 2025-03-20 02:23:47 +00:00
snapshot: remove redundant template parameter
GCC 12 does not allow it in C++20 mode anymore. Bug: chromium:819294 Change-Id: I025dda8046739fefc4ff449d4496ef496374eff5 Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/3929186 Commit-Queue: Mark Mentovai <mark@chromium.org> Reviewed-by: Mark Mentovai <mark@chromium.org>
This commit is contained in:
parent
cca548be84
commit
0acdadf032
@ -56,14 +56,14 @@ template <typename PhdrType>
|
|||||||
class ElfImageReader::ProgramHeaderTableSpecific
|
class ElfImageReader::ProgramHeaderTableSpecific
|
||||||
: public ElfImageReader::ProgramHeaderTable {
|
: public ElfImageReader::ProgramHeaderTable {
|
||||||
public:
|
public:
|
||||||
ProgramHeaderTableSpecific<PhdrType>() {}
|
ProgramHeaderTableSpecific() {}
|
||||||
|
|
||||||
ProgramHeaderTableSpecific<PhdrType>(
|
ProgramHeaderTableSpecific(
|
||||||
const ProgramHeaderTableSpecific<PhdrType>&) = delete;
|
const ProgramHeaderTableSpecific<PhdrType>&) = delete;
|
||||||
ProgramHeaderTableSpecific<PhdrType>& operator=(
|
ProgramHeaderTableSpecific<PhdrType>& operator=(
|
||||||
const ProgramHeaderTableSpecific<PhdrType>&) = delete;
|
const ProgramHeaderTableSpecific<PhdrType>&) = delete;
|
||||||
|
|
||||||
~ProgramHeaderTableSpecific<PhdrType>() {}
|
~ProgramHeaderTableSpecific() {}
|
||||||
|
|
||||||
bool Initialize(const ProcessMemoryRange& memory,
|
bool Initialize(const ProcessMemoryRange& memory,
|
||||||
VMAddress address,
|
VMAddress address,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user