We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c13cd0 commit 52f57c3Copy full SHA for 52f57c3
WebKitBrowser/WebKitBrowser.cpp
@@ -451,7 +451,7 @@ namespace WebKitBrowser {
451
452
class ProcessMemoryObserverImpl : public Exchange::IProcessMemory {
453
public:
454
- explicit ProcessMemoryObserverImpl(Core::process_t id)
+ explicit ProcessMemoryObserverImpl(pid_t id)
455
: Exchange::IProcessMemory()
456
, _info(id)
457
{
@@ -482,7 +482,6 @@ namespace WebKitBrowser {
482
}
483
484
uint32_t Identifier() const override {
485
- static_assert(sizeof(Core::process_t) <= sizeof(uint32_t), "PId type size too big to fit in IProcessMemory::ID");
486
return _info.Id();
487
488
0 commit comments