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

Commit

Permalink
Eliminate superfluous punctuation
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhoberock committed Sep 4, 2012
1 parent c58c834 commit d59c906
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion thrust/count.h
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ template <class InputIterator, class Predicate>
* \} // end reductions
*/

}; // end thrust
} // end thrust

#include <thrust/detail/count.inl>

4 changes: 2 additions & 2 deletions thrust/detail/numeric_traits.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ template<typename Integer>
public:
typedef typename
eval_if<
std::numeric_limits<Integer>::is_signed &&
(std::numeric_limits<Integer>::is_signed &&
// digits is the number of no-sign bits
(!std::numeric_limits<Integer>::is_bounded || (int(std::numeric_limits<Integer>::digits) + 1 >= num_digits<intmax_t>::value)),
(!std::numeric_limits<Integer>::is_bounded || (int(std::numeric_limits<Integer>::digits) + 1 >= num_digits<intmax_t>::value))),
identity_<Integer>,
eval_if<
int(std::numeric_limits<Integer>::digits) + 1 < num_digits<signed int>::value,
Expand Down
2 changes: 1 addition & 1 deletion thrust/gather.h
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ template<typename InputIterator1,
/*! \} // gathering
*/

}; // end namespace thrust
} // end namespace thrust

#include <thrust/detail/gather.inl>

2 changes: 1 addition & 1 deletion thrust/random/detail/mod.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ __host__ __device__
{
static_mod<T,a,c,m> f;
return f(x);
}; // end static_mod
} // end static_mod

} // end detail

Expand Down
2 changes: 1 addition & 1 deletion thrust/unique.h
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ template <typename InputIterator1,
/*! \} // end stream_compaction
*/

}; // end namespace thrust
} // end namespace thrust

#include <thrust/detail/unique.inl>

0 comments on commit d59c906

Please sign in to comment.