[libcxx-commits] [libcxx] d671126 - [libc++][NFC] Remove stray #if 1 that was probably a debugging leftover

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Tue Sep 12 14:19:34 PDT 2023


Author: Louis Dionne
Date: 2023-09-12T17:19:28-04:00
New Revision: d671126ad097ffd1bb19322005902676945862c2

URL: https://github.com/llvm/llvm-project/commit/d671126ad097ffd1bb19322005902676945862c2
DIFF: https://github.com/llvm/llvm-project/commit/d671126ad097ffd1bb19322005902676945862c2.diff

LOG: [libc++][NFC] Remove stray #if 1 that was probably a debugging leftover

Added: 
    

Modified: 
    libcxx/benchmarks/unordered_set_operations.bench.cpp

Removed: 
    


################################################################################
diff  --git a/libcxx/benchmarks/unordered_set_operations.bench.cpp b/libcxx/benchmarks/unordered_set_operations.bench.cpp
index 729e2ba6b0c70c9..96aa2e0dfea3be0 100644
--- a/libcxx/benchmarks/unordered_set_operations.bench.cpp
+++ b/libcxx/benchmarks/unordered_set_operations.bench.cpp
@@ -216,7 +216,6 @@ BENCHMARK_CAPTURE(BM_FindRehash,
     ->Arg(TestNumInputs);
 
 // Sorted //
-#if 1
 BENCHMARK_CAPTURE(BM_Find,
                   unordered_set_sorted_uint128,
                   std::unordered_set<__uint128_t, UInt128Hash>{},
@@ -228,7 +227,6 @@ BENCHMARK_CAPTURE(BM_FindRehash,
                   std::unordered_set<__uint128_t, UInt128Hash>{},
                   getSortedTopBitsIntegerInputs<__uint128_t>)
     ->Arg(TestNumInputs);
-#endif
 
 // Sorted //
 BENCHMARK_CAPTURE(


        


More information about the libcxx-commits mailing list