From 4aecadf942f46870b6311bdaf85ebb8bbd0bb4bf Mon Sep 17 00:00:00 2001 From: Christian Kern Date: Tue, 3 Mar 2015 09:13:52 +0100 Subject: [PATCH] avoid unused variable warning --- algorithms_cpp/include/embb/algorithms/merge_sort.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/algorithms_cpp/include/embb/algorithms/merge_sort.h b/algorithms_cpp/include/embb/algorithms/merge_sort.h index 5042eb9..45eabf7 100644 --- a/algorithms_cpp/include/embb/algorithms/merge_sort.h +++ b/algorithms_cpp/include/embb/algorithms/merge_sort.h @@ -177,7 +177,7 @@ void MergeSortAllocate( EMBB_TRY { MergeSort(first, last, temporary, comparison, policy, block_size); - } EMBB_CATCH (embb::base::ErrorException & e) { + } EMBB_CATCH (embb::base::ErrorException &) { // embb exception handling does not support catch(...) and rethrow yet. Alloc::Free(temporary); EMBB_THROW(embb::base::ErrorException, \ -- libgit2 0.26.0