Skip to content
This repository was archived by the owner on Mar 21, 2024. It is now read-only.

Commit d59c906

Browse files
committed
Eliminate superfluous punctuation
1 parent c58c834 commit d59c906

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

thrust/count.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ template <class InputIterator, class Predicate>
125125
* \} // end reductions
126126
*/
127127

128-
}; // end thrust
128+
} // end thrust
129129

130130
#include <thrust/detail/count.inl>
131131

thrust/detail/numeric_traits.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ template<typename Integer>
7171
public:
7272
typedef typename
7373
eval_if<
74-
std::numeric_limits<Integer>::is_signed &&
74+
(std::numeric_limits<Integer>::is_signed &&
7575
// digits is the number of no-sign bits
76-
(!std::numeric_limits<Integer>::is_bounded || (int(std::numeric_limits<Integer>::digits) + 1 >= num_digits<intmax_t>::value)),
76+
(!std::numeric_limits<Integer>::is_bounded || (int(std::numeric_limits<Integer>::digits) + 1 >= num_digits<intmax_t>::value))),
7777
identity_<Integer>,
7878
eval_if<
7979
int(std::numeric_limits<Integer>::digits) + 1 < num_digits<signed int>::value,

thrust/gather.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ template<typename InputIterator1,
211211
/*! \} // gathering
212212
*/
213213

214-
}; // end namespace thrust
214+
} // end namespace thrust
215215

216216
#include <thrust/detail/gather.inl>
217217

thrust/random/detail/mod.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ __host__ __device__
8787
{
8888
static_mod<T,a,c,m> f;
8989
return f(x);
90-
}; // end static_mod
90+
} // end static_mod
9191

9292
} // end detail
9393

thrust/unique.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ template <typename InputIterator1,
445445
/*! \} // end stream_compaction
446446
*/
447447

448-
}; // end namespace thrust
448+
} // end namespace thrust
449449

450450
#include <thrust/detail/unique.inl>
451451

0 commit comments

Comments
 (0)