Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
marin-ma committed Apr 15, 2024
1 parent 1c9da47 commit edf54dc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions velox/functions/sparksql/Hash.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ const int32_t kDefaultSeed = 42;
struct Murmur3Hash;
struct XxHash64;

/// A template struct that contains the seed and return type of the hash
/// function.
// A template struct that contains the seed and return type of the hash
// function.
template <typename HashClass>
struct HashTraits {};

Expand Down Expand Up @@ -82,8 +82,8 @@ ReturnType hashOne(StringView input, SeedType seed) {
return HashClass::hashBytes(input, seed);
}

/// Class to compute hashes identical to one produced by Spark.
/// Hashes are computed using the algorithm implemented in HashClass.
// Class to compute hashes identical to one produced by Spark.
// Hashes are computed using the algorithm implemented in HashClass.
template <
typename HashClass,
typename SeedType = typename HashTraits<HashClass>::SeedType,
Expand Down

0 comments on commit edf54dc

Please sign in to comment.