index : packages | |
Archlinux32 package modifications | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <git@eckner.net> | 2023-05-22 20:18:50 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2023-05-22 20:18:50 +0200 |
commit | e74cde76c104df82b120a7b13964cb786da8f565 (patch) | |
tree | 39967e24037929c04aaf79922aa260b437a60a5e /community/heaptrack/49577e019ea791ee63962cdfe7e9c0c5b5c6ea4b.patch | |
parent | 73e1d3b448cc583ab38cae4d61a26f313fad946b (diff) |
-rw-r--r-- | community/heaptrack/49577e019ea791ee63962cdfe7e9c0c5b5c6ea4b.patch | 25 |
diff --git a/community/heaptrack/49577e019ea791ee63962cdfe7e9c0c5b5c6ea4b.patch b/community/heaptrack/49577e019ea791ee63962cdfe7e9c0c5b5c6ea4b.patch deleted file mode 100644 index 9ddad81e..00000000 --- a/community/heaptrack/49577e019ea791ee63962cdfe7e9c0c5b5c6ea4b.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff --git a/tests/auto/tst_io.cpp b/tests/auto/tst_io.cpp -index 48abda6..fd31b31 100644 ---- a/tests/auto/tst_io.cpp -+++ b/tests/auto/tst_io.cpp -@@ -27,6 +27,11 @@ - - using namespace std; - -+constexpr uint64_t operator""_u64(unsigned long long v) -+{ -+ return static_cast<uint64_t>(v); -+} -+ - TEST_CASE ("write data", "[write]") { - TempFile file; - REQUIRE(file.open()); -@@ -124,7 +129,7 @@ TEST_CASE ("read line 64bit", "[read]") { - REQUIRE(reader >> module); - REQUIRE(module == "/tmp/KDevelop-5.2.1-x86_64/usr/lib/libKF5Completion.so.5"); - -- for (uint64_t expected : {0x7f48beedc00ul, 0x0ul, 0x36854ul, 0x236858ul, 0x2700ul}) { -+ for (auto expected : {0x7f48beedc00_u64, 0x0_u64, 0x36854_u64, 0x236858_u64, 0x2700_u64}) { - uint64_t addr = 0; - REQUIRE(reader >> addr); - REQUIRE(addr == expected); |