From ee4e2a03f2ced9e936116e1923be6c76ce8ae720 Mon Sep 17 00:00:00 2001 From: Shehzan Mohammed Date: Wed, 5 Nov 2014 17:54:46 -0500 Subject: [PATCH] Removing unused variables that cause warnings --- include/boost/compute/algorithm/detail/merge_path.hpp | 2 -- .../boost/compute/algorithm/detail/merge_with_merge_path.hpp | 2 -- include/boost/compute/algorithm/includes.hpp | 2 -- include/boost/compute/random/discrete_distribution.hpp | 3 --- 4 files changed, 9 deletions(-) diff --git a/include/boost/compute/algorithm/detail/merge_path.hpp b/include/boost/compute/algorithm/detail/merge_path.hpp index 6a198a96..91f2a8db 100644 --- a/include/boost/compute/algorithm/detail/merge_path.hpp +++ b/include/boost/compute/algorithm/detail/merge_path.hpp @@ -49,8 +49,6 @@ public: OutputIterator1 result_a, OutputIterator2 result_b) { - typedef typename std::iterator_traits::value_type value_type; - m_a_count = iterator_range_size(first1, last1); m_a_count_arg = add_arg("a_count"); diff --git a/include/boost/compute/algorithm/detail/merge_with_merge_path.hpp b/include/boost/compute/algorithm/detail/merge_with_merge_path.hpp index c8cfcdc6..73b6b6a1 100644 --- a/include/boost/compute/algorithm/detail/merge_with_merge_path.hpp +++ b/include/boost/compute/algorithm/detail/merge_with_merge_path.hpp @@ -129,8 +129,6 @@ merge_with_merge_path(InputIterator1 first1, OutputIterator result, command_queue &queue = system::default_queue()) { - typedef typename std::iterator_traits::value_type value_type; - int tile_size = 1024; int count1 = iterator_range_size(first1, last1); diff --git a/include/boost/compute/algorithm/includes.hpp b/include/boost/compute/algorithm/includes.hpp index 6a378f75..dc964265 100644 --- a/include/boost/compute/algorithm/includes.hpp +++ b/include/boost/compute/algorithm/includes.hpp @@ -116,8 +116,6 @@ inline bool includes(InputIterator1 first1, InputIterator2 last2, command_queue &queue = system::default_queue()) { - typedef typename std::iterator_traits::value_type value_type; - int tile_size = 1024; int count1 = detail::iterator_range_size(first1, last1); diff --git a/include/boost/compute/random/discrete_distribution.hpp b/include/boost/compute/random/discrete_distribution.hpp index a1ab9ddc..6ca07160 100644 --- a/include/boost/compute/random/discrete_distribution.hpp +++ b/include/boost/compute/random/discrete_distribution.hpp @@ -44,9 +44,6 @@ public: : m_n(std::distance(first, last)), m_probabilities(std::distance(first, last)) { - typedef typename - std::iterator_traits::value_type value_type; - double sum = 0; for(InputIterator iter = first; iter!=last; iter++)