@@ -174,31 +174,6 @@ class CARE_DLL_API KeyValueSorter<KeyType, ValueType, RAJADeviceExec> {
174
174
setKeyValueArraysFromManagedArray (m_keys, m_values, len, arr);
175
175
}
176
176
177
- #if defined(CARE_ENABLE_IMPLICIT_CONVERSIONS)
178
-
179
- // /////////////////////////////////////////////////////////////////////////
180
- // / @author Alan Dayton
181
- // /
182
- // / @brief Constructor
183
- // /
184
- // / Allocates space and initializes the KeyValueSorter by copying
185
- // / elements and ordering from the given managed array
186
- // /
187
- // / @note This overload is needed to prevent ambiguity when implicit
188
- // / casts are enabled
189
- // /
190
- // / @param[in] len - The number of elements to allocate space for
191
- // / @param[in] arr - The managed array to copy elements from
192
- // /
193
- // / @return a KeyValueSorter instance
194
- // /////////////////////////////////////////////////////////////////////////
195
- KeyValueSorter<KeyType, ValueType, RAJADeviceExec>(const size_t len, const host_device_ptr<ValueType> & arr)
196
- : KeyValueSorter<KeyType, ValueType, RAJADeviceExec>(len, host_device_ptr<const ValueType>(arr))
197
- {
198
- }
199
-
200
- #endif // defined(CARE_ENABLE_IMPLICIT_CONVERSIONS)
201
-
202
177
// /////////////////////////////////////////////////////////////////////////
203
178
// / @author Alan Dayton
204
179
// / @brief (Shallow) Copy constructor
@@ -758,32 +733,6 @@ class CARE_DLL_API KeyValueSorter<KeyType, ValueType, RAJA::seq_exec> {
758
733
setKeyValueArraysFromManagedArray (m_keyValues, len, arr);
759
734
}
760
735
761
- #if defined(CARE_ENABLE_IMPLICIT_CONVERSIONS)
762
-
763
- // /////////////////////////////////////////////////////////////////////////
764
- // / @author Alan Dayton
765
- // /
766
- // / @brief Constructor
767
- // /
768
- // / Allocates space and initializes the KeyValueSorter by copying
769
- // / elements and ordering from the given managed array
770
- // /
771
- // / @note This overload is needed to prevent ambiguity when implicit
772
- // / casts are enabled
773
- // /
774
- // / @param[in] len - The number of elements to allocate space for
775
- // / @param[in] arr - The managed array to copy elements from
776
- // /
777
- // / @return a KeyValueSorter instance
778
- // /
779
- // /////////////////////////////////////////////////////////////////////////
780
- KeyValueSorter<KeyType, ValueType, RAJA::seq_exec>(const size_t len, const host_device_ptr<ValueType> & arr)
781
- : KeyValueSorter<KeyType, ValueType, RAJA::seq_exec>(len, host_device_ptr<const ValueType>(arr))
782
- {
783
- }
784
-
785
- #endif // defined(CARE_ENABLE_IMPLICIT_CONVERSIONS)
786
-
787
736
// /////////////////////////////////////////////////////////////////////////
788
737
// / @author Alan Dayton
789
738
// / @brief (Shallow) Copy constructor
0 commit comments