Changeset 233677 in webkit


Ignore:
Timestamp:
Jul 9, 2018 11:13:40 PM (6 years ago)
Author:
zandobersek@gmail.com
Message:

Unreviewed follow-up to r233660.

  • wtf/linux/MemoryFootprintLinux.cpp:

(WTF::memoryFootprint): Revert accidental change of logical OR into a bitwise OR.

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r233660 r233677  
     12018-07-09  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        Unreviewed follow-up to r233660.
     4
     5        * wtf/linux/MemoryFootprintLinux.cpp:
     6        (WTF::memoryFootprint): Revert accidental change of logical OR into a bitwise OR.
     7
    182018-07-09  Youenn Fablet  <youenn@apple.com>
    29
  • trunk/Source/WTF/wtf/linux/MemoryFootprintLinux.cpp

    r233660 r233677  
    7373            if (scannedCount == 7) {
    7474                StringView pathString(path);
    75                 isAnonymous = pathString == "[heap]" | pathString.startsWith("[stack");
     75                isAnonymous = pathString == "[heap]" || pathString.startsWith("[stack");
    7676                return;
    7777            }
Note: See TracChangeset for help on using the changeset viewer.